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 Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
646 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
367 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
108 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
570 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
573 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment