TrailingStop = 8;
SetStopLoss(strOrder, CalculationMode.Price, order.AvgFillPrice - (TrailingStop * TickSize), true);
Now when I get so many ticks in profit I want to move my stop loss up to eg: 4 ticks.
Where would I do this? in OnPositionUpdate() ?

Comment