Hello everyone,
I have a question regarding the set methods :
-> when the strategy has for parameter UniqueEntries, and multiple different orders are active,
the strategy exits at the average price of all the active orders.
But I cannot find the right code in order to have each exits at each respective stop or target from its entry price (instead of the average price), even if the code looks like below :
SetStopLoss("entrySignala", CalculationMode.Ticks, someIntaFromEntryPrice, false);
SetProfitTarget("entrySignala", CalculationMode.Ticks, someIntbFromEntryPrice);
Is this expected ? and what am I missing ?

Comment