I have a strategy that has multiple market entries and limit entries. I would then like to put in 3 long stop exit orders that sells 1/3 of the position each from all entries.
Let's assume I had 2 entries from Entry Signal "EntrySignal1" and 1 entry from Entry Signal "EntrySignal2".
Now I am using these ExitLongStop orders:
ExitOrderCT1 = ExitLongStop(0,false, 1, ExitSTPLevel1,"CTSL1",""); ExitOrderCT2 = ExitLongStop(0,false, 1, ExitSTPLevel2,"CTSL2",""); ExitOrderCT3 = ExitLongStop(0,false, 1, ExitSTPLevel3,"CTSL3","");
If I changed it to
ExitOrderCT1 = ExitLongStop(0,false, 1, ExitSTPLevel1,"CTSL1",""); ExitOrderCT2 = ExitLongStop(0,false, 1, ExitSTPLevel2,"CTSL2",""); ExitOrderCT3 = ExitLongStop(0,false, 1, ExitSTPLevel3,"CTSL3","EntrySignal2");
I could name all entry orders the same, but then my multiple enter limit orders will not be executed (because they are labelled the same). If I give unique names to my entry orders, then my exit stop orders will not be executed.
what do you suggest?
thank you
whotookmynickname


Comment