I have a followind formula which tells me the actual stop loss in ticks:
SetStopLoss("", CalculationMode.Ticks, sL, false);
SetProfitTarget("", CalculationMode.Ticks, PT);
EnterShort(DefaultQuantity, "");
Print("Stop loss: " + sL + " ticks.");
I want it to make it work like this:
Print("Sold at 502.5, stop: 14 ticks at 501.1, profit 40 ticks at 506.5.");
Please help.

Comment