- Position is Flat
- Stop is set with SetStopTarget
- Target is set with SetStopTarget
- Order was sent using EnterShortMIT
here are the details:
4/14/2023 3:59:59 PM Strategy 'BWAA1/-1': Entered internal SetStopTarget() method: Type=Target FromEntrySignal='ES@197-Short' Mode=Price Value=4172.5 IsSimulatedStop=False IsMarketIfTouched=False
BWAA1/ES:SOrder.New@196- 04/14 15:59:59, OpenQty=0, Position=Flat, Name=ES@197-Short, Type=MIT, Qty=1, priceEnter=4174.75, priceStop=4175.00, priceTarget=4172.50
4/14/2023 3:59:59 PM Strategy 'BWAA1/-1': Entered internal SubmitOrderManaged() method at 4/14/2023 3:59:59 PM: BarsInProgress=0 Action=SellShort OrderType=MIT Quantity=1 LimitPrice=0 StopPrice=4174.75 SignalName='ES@197-Short' FromEntrySignal=''
4/14/2023 3:59:59 PM Strategy 'BWAA1/-1': Ignored SubmitOrderManaged() method at 4/14/2023 3:59:59 PM: BarsInProgress=0 Action=SellShort OrderType=MIT Quantity=1 LimitPrice=0 StopPrice=4174.75 SignalName='ES@197-Short' FromEntrySignal='' Reason='An Enter() method to submit an entry order has been ignored. Please search on the term 'Internal Order Handling Rules that Reduce Unwanted Positions' in the Help Guide for detailed explanation.'
Strategy 'BWAA1/-1': An Enter() method to submit an entry order at '04/14/2023 15:59:59' has been ignored. Please search on the term 'Internal Order Handling Rules that Reduce Unwanted Positions' in the Help Guide for detailed explanation.
4/14/2023 3:59:59 PM Strategy 'BWAA1/-1': Cancelled expired order: BarsInProgress=0, orderId='NT-00933-3545' account='Backtest' name='ES@196-Long' orderState=Working instrument='ES 06-23' orderAction=Buy orderType='MIT' limitPrice=0 stopPrice=4170.75 quantity=1 tif=Gtc oco='' filled=0 averageFillPrice=0 onBehalfOf='' id=-1 time='2023-04-14 15:41:00' gtd='2099-12-01' statementDate='2023-05-02'
Can you help explain the point and possibly help understand my specific issue?
Methods that generate orders to enter a position will be ignored if:
- A position is open and an order submitted by a non market order exit method (ExitLongLimit() for example) is active and the order is used to open a position in the opposite direction
- A position is open and an order submitted by a set method (SetStopLoss() for example) is active and the order is used to open a position in the opposite direction
- A position is open and two or more Entry methods to reverse the position are entered together. In this case the second Entry order will be ignored.
- The strategy position is flat and an order submitted by an enter method (EnterLongLimit() for example) is active and the order is used to open a position in the opposite direction
- The entry signal name is not unique
Methods that generate orders to exit a position will be ignored if:
- A position is open and an order submitted by an enter method (EnterLongLimit() for example) is active and the order is used to open a position in the opposite direction
- A position is open and an order submitted by a set method (SetStopLoss() for example) is active
Set() methods that generate orders to exit a position will be ignored if:
- A position is open and an order submitted by an enter method (EnterLongLimit() for example) is active and the order is used to open a position in the opposite direction
- A position is open and an order submitted by a non market order exit method (ExitLongLimit() for example) is active

Comment