Just having a play with my first bit of backtesting... how would i amend the below to move the stop to b/e if the price hits +25 ticks?
Any help greatly appreciated
protected override void Initialize()
{
SetStopLoss("", CalculationMode.Ticks, 25, false);
SetProfitTarget("", CalculationMode.Ticks, 36);
CalculateOnBarClose = true;
}

Comment