However, when I change to either price or percentage mode, the stop loss order did not seem to be placed.
Does the price or percentage mode work for future contracts? I must add that I enter at the same timeframe but exit at a longer timeframe:
From 1 min:
EnterShort(0, firstHalf, "FirstHalf");
From 15 min:
ExitShort(0, firstHalf, "ExitFirstHalf", "FirstHalf");
Seperately, if I enter two orders for scaling out, should I call SetStopLoss once without specifying the signal name or call it twice:
SetStopLoss(CalculationMode.Price, 1321);
or
SetStopLoss("FirstHalf", CalculationMode.Price, 1321, false);
SetStopLoss("SecondHalf", CalculationMode.Price, 1321, false);
Thanks!

Comment