I'm trying to handle each position with her own exit price.
For each signal i have a different name.
How can i control each signal with the SetProfitTarget/SetStopLoss ?
I'm using this code but it's not working :
SetProfitTarget("LoSig"+i,CalculationMode.Ticks,Ma xProfit);
SetStopLoss("LoSig"+i,CalculationMode.Ticks,MaxLos s,false);
Igal

Comment