"A BuyToCover stop order placed at 'x' has been ignored since the stop price is less than or equal to the close price of the current bar."
I don't understand this as this is the code I am using...
if (Close[0]<stopprice) ExitShortStop(stopprice); else ExitShort();

Comment