I have a strange behavior:
When I have an open SHORT Position an I close this position with:
ExitShort(Convert.ToInt32(CurrentPositionSize));
And I then send following new Limit-Longs immediately, these Longs are ignored.
EnterLongLimit(BarsInProgress, true, Convert.ToInt32(Math.Ceiling(orderQuantity)), entryPrice, i + "/" + j);
OnOrderUpdate is also not been triggered with the EnterLongLimit.
What to do, to get the Limit Longs now?
Thanks in advance.

Comment