The log and trace can contain sensitive information. Do not post these on the forums.
Instead email these to support [at] ninjatrader.com.
"Also, when I enable a strategy in the middle of the RTH, sometimes it will enter a trade immediately after I enable a strategy. Is there a way to code the strategy so that when I enable it, it won't enter a trade until the next new bar?"
if (State == State.Historical || IsFirstTickOfBar == false)
return;

Comment