Hello, I was toying around with writing AFL code in the demo version of Amibroker and at some point, I must have accidentally replaced the ExitAtStop value with my five point stop value like so
ApplyStop(stopTypeTrailing,stopModePoint,pointStop,5);
While looking at the AFL documentation for ApplyStop, it shows cases for when ExitAtStop is 0,1, and 2 but nothing about when its none of those. When I backtest, as long as ExitAtStop is greater than 2 or less than 0, the trailing stop behaves in the same way, but is different from how it behaves when its 0-2.
Not really a problem, I'm just curious what's going on when I have this wrong.