An Exit() method to submit an exit order at '1/3/2008 9:15:00 AM' has been ignored. Please search on the term 'Internal Order Handling Rules' in the Help Guide for detailed explanation.
When I look this up in the help guide, it doesn't tell me anything useful. I've tried all permutations of the ExitLimit() and they all give me this. When I use just the ExitLong() methods, they all work, so it doesn't sound like there's a problem with my signal naming or anything.
I started by using the advanced ExitLongLimit() signature and kept slimming it down to see if I was missing something. Right now, I have this in my OnBarUpdate() method:
if( Position.MarketPosition == MarketPosition.Long) {
ExitLongLimit(GetCurrentBid()-0.3);
}
What's going on? I just don't get it.

Comment