I´m using NT live-license for one week now and I want to code in my strategy setstoploss and settrailstop. I´ve read the video-library referring to this issue before writing that post and I understand that I can´t use both stoploss and trailstop - of course - not for the same positon. But when I name the entries different it doesn´t work too. The entry2-position is closed with profit-target or stoploss.
SetProfitTarget("Entry1", CalculationMode.Ticks, 10);
SetProfitTarget("Entry2", CalculationMode.Ticks, 50);
SetStopLoss("Entry1", CalculationMode.Ticks, 15,true);
SetTrailStop("Entry2", CalculationMode.Ticks, 9, true);
Doesn´t this work this way? Thank you for help.

Best regards
Tony

Comment