I get a setup Bar which tell me to go go short. In my code I issue an
EnterShortStopLimit(DefaultQuantity, LimitPrice, StopPrice );
New bars come in and my EnterShortStopLimit is NEVER filled.
I now get a new setup Bar which tells me to go long. Am i required to issue a CancelOrder() before I issue the
EnterLongStopLimit(DefaultQuantity, LimitPrice, StopPrice ); ?
Or will NT automatically issue the Cancel. Will the auto cancel and new EnterLongStopLimit() both be submitted to execute in sequence on the current bar? Or will they be spread out over the current bar (for the cancel) and the LongStopLimit() on the next bar?

Comment