I have been looking through the forum for a while and as best I can tell the following code should work to create a Bracketed OCO (manually Canceled) Entry:
Init() includes:
EntriesPerDirection = 1;
EntryHandling = EntryHandling.UniqueEntries;
m_entryLongLimit = EnterLongStopLimit(0, true, t1size, LonglimitPrice, LongstopPrice, "LongLEntry");
m_entryShortLimit = EnterShortStopLimit(0, true, t1size, ShortlimitPrice, ShortstopPrice, "ShortLEntry");
**NT** An Enter() method to submit an entry order at '5/22/2011 6:00:11 PM' has been ignored. Please search on the term 'Internal Order Handling Rules' in the Help Guide for detailed explanation.
The rules are not very clear, but implies if I have different names it should work, I read in a different thread that setting the UniqueEntry param is also required. I would rather not swap everything to Unmanaged if I can avoid it.
-NJA_MC

Comment