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 SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
49 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
22 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
15 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
21 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
23 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment