Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
ADXVMA strategy problem?
Collapse
X
-
ADXVMA strategy problem?
I'm using ADXVMA Period 2 in a strategy. It plots fine when used only as indicator but as soon as I try to use in an strategy it plots differently. The red line is the normal ADXVMA period 2 plot and the blue line is the strategy one that is off for some reason. Any help would be much appreciated.Tags: None
-
Okay. thanks for the helpOriginally posted by NinjaTrader_Josh View PostPlease post the code. Both indicator and strategy.Attached Files
Comment
-
Ninja B,
This is the solution. You should not make variable assignments in the Initialize() method.
Cut these lines from the Initalize() method:
Move them to the OnBarUpdate() method:Code:WeightDX = ADXPeriod; WeightDM = ADXPeriod; WeightDI = ADXPeriod; ChandeEMA = ADXPeriod;
Code:if (CurrentBar == 0) { WeightDX = ADXPeriod; WeightDM = ADXPeriod; WeightDI = ADXPeriod; ChandeEMA = ADXPeriod; }Last edited by NinjaTrader_JoshP; 09-15-2008, 09:39 AM.Josh P.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
56 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
143 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
160 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
96 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
276 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment