SetTrailStop(CalculationMode.Percent, 10);
How would I code it if I don't want it to start until a certain amount of profit (i.e. floor) was made?
Would it be:
If Position.GetProfitLoss(Close[0], PerformanceUnit.Points) > 12 SetTrailingStop(Percent,10);
?
And I assume this should go in the OnBarUpdate() method, correct?
Thx.

Comment