Can any amibroker programming gurus can help me with clearing this concept. I want to add stop loss function to my backtest script and I found this fixed stop loss code.
amount = 2; // 2% loss
ApplyStop( stopTypeLoss, stopModePercent, amount, True );
my question is how amibroker determines a...