I get an error message saying
"An Exit() method to submit an entry order at '7/11/2018 12:12:00 AM' has been ignored. Please search on the term 'Internal Order Handling Rules' in the Help Guide for detailed explanation."
here is a sample of the cover logic
if (Position.MarketPosition == MarketPosition.Long)
{
while(LongPercent >= 0.60) //40% close to moving SMA
{
ExitLongLimit(SMA[0])
}

Comment