Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Avoid Yellow
Collapse
X
-
Avoid Yellow
Hey guys, when you reactivate a strategy, how do you get it to avoid having a yellow status on control panel? i want it to just show green.Tags: None
-
Hi elitetradernyc,
Thanks for your post.
You can either not submit any orders in historical data or you can set the strategy to immediately submit live working historical orders.
To prevent historical orders add the following to the beginning of OnBarUpdate().
if (Historical)
{
return;
}
To change the settings so that all strategies submit live working historical orders:- Click Tools -> Options... -> select the Strategies tab -> select the NinjaScript subtab
- Select the option labeled Immediately submit live working historical orders
Below is a link to the help guide on Syncing Account Positions. Please see the section 'Immediately submit live working historical orders, Sync account position = false'.
http://www.ninjatrader.com/support/h..._positions.htmChelsea B.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by kinfxhk, 07-14-2026, 09:39 AM
|
0 responses
93 views
0 likes
|
Last Post
by kinfxhk
07-14-2026, 09:39 AM
|
||
|
Started by kinfxhk, 07-13-2026, 10:18 AM
|
0 responses
93 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 10:18 AM
|
||
|
Started by kinfxhk, 07-13-2026, 09:50 AM
|
0 responses
71 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 09:50 AM
|
||
|
Started by kinfxhk, 07-13-2026, 07:21 AM
|
0 responses
88 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 07:21 AM
|
||
|
Started by kinfxhk, 07-11-2026, 02:11 AM
|
0 responses
67 views
0 likes
|
Last Post
by kinfxhk
07-11-2026, 02:11 AM
|

Comment