Hello,
I have a strategy that uses the following method
EnterLongStopMarket(int barsInProgressIndex, bool isLiveUntilCancelled, int quantity, double stopPrice, string signalName);
same for exits and short versions
I'm setting
isLiveUntilCancelled = true
TimeInForce = GTC
This strategy has a timeframe of 15 min and operates on AMZN
It placed an entry order today at 14:44 that reached an Accepted state and at 14:55 it got cancelled
My strategy has no CancelOrder(); calling and it was not cancelled manually
I need to know what could have happened?
Thank you

Comment