This is a basic question, so bear with me.
I submit 2 long entry orders, like below:
If ((Closes[0][0] > SMA(10)[0])
{
EnterLong(1,"L3");
}
I am able to set a generic stopLoss like this:
SetStopLoss("CalculationMode.Ticks, 8); --This works for both L2 and L3
I am looking for SetStopLoss only for L3. How do I achieve that?
SetStopLoss(1, "CalculationMode.Ticks, 8, "L3");
Tried many different way but it errors.
Appreciate your help!
Thanks

Comment