private bool _boolReverseOnOppositeSignal = true;
CalculateOnBarClose = true.
private void GoShort(string strEntryName)
{
if (this._boolReverseOnOppositeSignal) ExitLong();
EnterShortLimit(DefaultQuantity, Close[0], strEntryName);
}
I had already seen that the strategy would not reverse on the EnterLimit(), if I did not actually flatten first, but it seems that even if I flatten, the second order is never sent anyway.

You do reversals right now with Mar****rders. What makes is so impossible to do with LimitOrders?
Comment