I've read the documentation here:https://ninjatrader.com/support/help...ed_order_handl ing.htm
around order handling, but am still getting the pop up saying that the strategy has been disabled because it's trying to modify a historical order and have some questions.
I have a strategy which uses entry signals to enter like so:
SetStopLoss(lf1, CalculationMode.Price, tp2 - 0.5, false); SetProfitTarget(lf1, CalculationMode.Price, stop - 0.5); EnterLongLimit(BarsInProgress, true, 2, entryPrice, lf1);
SetStopLoss(lf1, CalculationMode.Price, newStop, false);
In this case though I'm not doing anything with the order - how can I get around the error? Do I modify the Active
Thanks!

Comment