NexusFi: Find Your Edge


Home Menu

 





Coppock indicator for NT7


Discussion in NinjaTrader

Updated
    1. trending_up 3,720 views
    2. thumb_up 4 thanks given
    3. group 3 followers
    1. forum 13 posts
    2. attach_file 3 attachments




 
Search this Thread

Coppock indicator for NT7

  #1 (permalink)
 romus 
Melbourne, VIC, Australia
Legendary Wicked Trader
 
Experience: Intermediate
Platform: NinjaTrader
Trading: SPI
Frequency: Every few days
Duration: Days
Posts: 781 since Dec 2010
Thanks Given: 1,975
Thanks Received: 3,155

I am looking for a Coppock indicator for NT7.
If there is one there, please post a link or attach one.

Many thanks in advance,
romus

Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
My NT8 Volume Profile Split by Asian/Euro/Open
NinjaTrader
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
ZombieSqueeze
Platforms and Indicators
Better Renko Gaps
The Elite Circle
Exit Strategy
NinjaTrader
 
  #2 (permalink)
 
rleplae's Avatar
 rleplae 
Gits (Hooglede) Belgium
Legendary Market Wizard
 
Experience: Master
Platform: NinjaTrader, Proprietary,
Broker: Ninjabrokerage/IQfeed + Synthetic datafeed
Trading: 6A, 6B, 6C, 6E, 6J, 6S, ES, NQ, YM, AEX, CL, NG, ZB, ZN, ZC, ZS, GC
Posts: 3,003 since Sep 2013
Thanks Given: 2,442
Thanks Received: 5,863


romus View Post
I am looking for a Coppock indicator for NT7.
If there is one there, please post a link or attach one.

Many thanks in advance,
romus

You can try this one

Attached Files
Elite Membership required to download: CoppockNT7.zip
Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
Thanked by:
  #3 (permalink)
 romus 
Melbourne, VIC, Australia
Legendary Wicked Trader
 
Experience: Intermediate
Platform: NinjaTrader
Trading: SPI
Frequency: Every few days
Duration: Days
Posts: 781 since Dec 2010
Thanks Given: 1,975
Thanks Received: 3,155



rleplae View Post
You can try this one

Hi @rleplae,

Many thanks for quick response.
I have tired it and it behaves strange - original settings 14-11-10 after closing indicator dialog box and reopening the setting suddenly change - without changing the shape of the line (or 0 line crossovers).

Have you experienced this?

Cheers,
romus

When nothing goes right... go left
Started this thread Reply With Quote
  #4 (permalink)
 
rleplae's Avatar
 rleplae 
Gits (Hooglede) Belgium
Legendary Market Wizard
 
Experience: Master
Platform: NinjaTrader, Proprietary,
Broker: Ninjabrokerage/IQfeed + Synthetic datafeed
Trading: 6A, 6B, 6C, 6E, 6J, 6S, ES, NQ, YM, AEX, CL, NG, ZB, ZN, ZC, ZS, GC
Posts: 3,003 since Sep 2013
Thanks Given: 2,442
Thanks Received: 5,863


romus View Post
Hi @rleplae,

Many thanks for quick response.
I have tired it and it behaves strange - original settings 14-11-10 after closing indicator dialog box and reopening the setting suddenly change - without changing the shape of the line (or 0 line crossovers).

Have you experienced this?

Cheers,
romus

On what type of chart did you put the indicator ?

Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
  #5 (permalink)
 romus 
Melbourne, VIC, Australia
Legendary Wicked Trader
 
Experience: Intermediate
Platform: NinjaTrader
Trading: SPI
Frequency: Every few days
Duration: Days
Posts: 781 since Dec 2010
Thanks Given: 1,975
Thanks Received: 3,155


rleplae View Post
On what type of chart did you put the indicator ?

Daily.
In any lower timeframe it did not work, just displays the message to use it on Daily, Weekly or Monthly.

When nothing goes right... go left
Started this thread Reply With Quote
  #6 (permalink)
 romus 
Melbourne, VIC, Australia
Legendary Wicked Trader
 
Experience: Intermediate
Platform: NinjaTrader
Trading: SPI
Frequency: Every few days
Duration: Days
Posts: 781 since Dec 2010
Thanks Given: 1,975
Thanks Received: 3,155

I have used in on AAPL - same thing (previously I tried on ASX stocks).

AAPL 1 - original settings
AAPL 2 - shows what happens when I double clicked on the indicator and how the settings have changed.

When nothing goes right... go left
Attached Thumbnails
Click image for larger version

Name:	AAPL 1.PNG
Views:	212
Size:	117.7 KB
ID:	233665   Click image for larger version

Name:	AAPL 2.PNG
Views:	176
Size:	105.9 KB
ID:	233666  
Started this thread Reply With Quote
  #7 (permalink)
 
rleplae's Avatar
 rleplae 
Gits (Hooglede) Belgium
Legendary Market Wizard
 
Experience: Master
Platform: NinjaTrader, Proprietary,
Broker: Ninjabrokerage/IQfeed + Synthetic datafeed
Trading: 6A, 6B, 6C, 6E, 6J, 6S, ES, NQ, YM, AEX, CL, NG, ZB, ZN, ZC, ZS, GC
Posts: 3,003 since Sep 2013
Thanks Given: 2,442
Thanks Received: 5,863


romus View Post
I have used in on AAPL - same thing (previously I tried on ASX stocks).

AAPL 1 - original settings
AAPL 2 - shows what happens when I double clicked on the indicator and how the settings have changed.

If you want different settings than the default, you need to put the 'user override' flag to true
for those settings to be taken into account

The indicator only works on day, week, month as per the design

 
Code
	// Assuming 52 weeks of 5 trading days, 12 months = 260 days. Subtract 10 days for holidays.
			
			if (!isInitiated)
			{
			double multFactor; 
				
			if (!useroverride) 
				{
				ROCPeriod1 = 14; 
				ROCPeriod2 = 11; 
				WMAPeriod = 10;
				}
			
			if (Bars.Period.Id == PeriodType.Month)	multFactor = 1; 
			else if (Bars.Period.Id == PeriodType.Week) multFactor = 52.0/12.0; //52 weeks = 12 months. Must be explitly 
																				//input as a double value, hence the .0
			else if (Bars.Period.Id == PeriodType.Day) multFactor = 250.0/12.0; //250 days = 12 months
				
			else
				{
					int barsAgo = 0;
					if (CurrentBar > 50) barsAgo = 50;
					DrawOnPricePanel = false;
					DrawText("unsupported", false, "This indicator is supported only on monthly, weekly or daily time frames !", barsAgo, 0.5, 0, Color.Red, new Font("Arial", 20), StringAlignment.Center, Color.Black, Color.Black, 5);
					DrawOnPricePanel = true;
					return;
				}
			
			if (useroverride) multFactor = 1;
			
			ROCPeriod1 = (int) ((double)ROCPeriod1 * multFactor); 
			ROCPeriod2 = (int) ((double)ROCPeriod2 * multFactor);
			WMAPeriod = (int) ((double)WMAPeriod * multFactor);
			
			isInitiated = true;
			}

			sum.Set(ROC(Input, ROCPeriod1)[0] + ROC(Input, ROCPeriod2)[0]);
			Plot0.Set(WMA(sum, WMAPeriod)[0]);

Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
Thanked by:
  #8 (permalink)
 romus 
Melbourne, VIC, Australia
Legendary Wicked Trader
 
Experience: Intermediate
Platform: NinjaTrader
Trading: SPI
Frequency: Every few days
Duration: Days
Posts: 781 since Dec 2010
Thanks Given: 1,975
Thanks Received: 3,155

Hi @rleplae,

There is no issue with overriding the settings - my remark, rather than complain, is that without doing anything to the settings, the settings are changed by themselves - and actually, without changing the shape of the indicator curve.

Anyway, I can use it in the form as is, just wondered if you have experienced similar effect.

Many thanks,
romus

When nothing goes right... go left
Started this thread Reply With Quote
  #9 (permalink)
 
rleplae's Avatar
 rleplae 
Gits (Hooglede) Belgium
Legendary Market Wizard
 
Experience: Master
Platform: NinjaTrader, Proprietary,
Broker: Ninjabrokerage/IQfeed + Synthetic datafeed
Trading: 6A, 6B, 6C, 6E, 6J, 6S, ES, NQ, YM, AEX, CL, NG, ZB, ZN, ZC, ZS, GC
Posts: 3,003 since Sep 2013
Thanks Given: 2,442
Thanks Received: 5,863


romus View Post
Hi @rleplae,

There is no issue with overriding the settings - my remark, rather than complain, is that without doing anything to the settings, the settings are changed by themselves - and actually, without changing the shape of the indicator curve.

Anyway, I can use it in the form as is, just wondered if you have experienced similar effect.

Many thanks,
romus

I am afraid it's not clear to me what you are describing.

Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
  #10 (permalink)
 romus 
Melbourne, VIC, Australia
Legendary Wicked Trader
 
Experience: Intermediate
Platform: NinjaTrader
Trading: SPI
Frequency: Every few days
Duration: Days
Posts: 781 since Dec 2010
Thanks Given: 1,975
Thanks Received: 3,155



rleplae View Post
I am afraid it's not clear to me what you are describing.

Just see the pictures - I have not changed the settings - just applied the indicator (the settings shown were 14-11-10), then double-clicked on it in the chart and when dialog box opened the settings were 291-229-208.
Isn't it bizarre?

When nothing goes right... go left
Started this thread Reply With Quote




Last Updated on December 2, 2018


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts