Well, I have gone through the posts in the forum and I still am not clear. This still seems to be an area of confusion since 2009. Perhaps someone can clarify this for me.
I am testing a strategy in which I wish to do the following:
if(long entry conditions)
longEntryOrder = EnterLongStop(0, true, 1, High[0] + TickSize, Instrument.FullName);
if(short entry conditions)
shortEntryOrder = EnterShortStop(0, true, 1, Low[0] - TickSize, Instrument.FullName);
and of course I am hitting the order handling message:
6/21/2011 5:37:58 PM Strategy An Enter() method to submit an entry order at '1/5/2011 5:15:00 AM' has been ignored. Please search on the term 'Internal Order Handling Rules' in the Help Guide for detailed explanation.
This seems odd to me. Yes, I have two entries in opposite directions but they have not been triggered. Why is the strategy complaining? And, more importantly, how do I fix this? Any help would be greatly appreciated. Thank you.

Comment