I set up a strategy with a trailing stop. However, when I test it on historical data I have strange results: it seems that the stop is triggered without any reason, sometime exiting an entry I soon as it entered it. Have you already faced the same issue?
Thanks
My code:
protected override void Initialize()
{
SetTrailStop("Buy", CalculationMode.Percent, StopLoss, true);
CalculateOnBarClose = true;
}

Comment