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.
Comment