Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Issue on strategy start up
Collapse
X
-
Issue on strategy start up
I am having a problem with the strategy opening a position upon start up. The strategy looks moving average difference to enter if MA(5)[0] > MA(10)[0] && MA(5)[1] <= MA(10)[1]. This is basically an example, the strategy is looking for a crossover. The problem is that right when I start up the strategy, it does not wait for the cross over it just opens up a position. Can I do something to prohibit this?Tags: None
-
lvaduva,
When you start a strategy it calculates what it thinks its strategy position is based on all the historical data it is processing and continues off of that strategy position. If you do not wish for this and would like to start fresh whenever you start the strategy please add this to the top of your OnBarUpdate():
Code:if (Historical) return;
Josh P.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
65 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
149 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
162 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
99 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
286 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment