I was wondering if there is a way to plot a traling stoploss on my chart once the following strategy is in position (long):
if (Position.MarketPosition == MarketPosition.Flat )
{
SetTrailStop("Trailing Stop", CalculationMode.Ticks, 0.01 * ATR(10)[0]);
EnterLong()
}

Comment