I should appreciate it if someone would help me with the following issue. I cannot figure out by myself.
When backtesting this sample system, I get Profit / Trail / Max Loss notices in the report, even when neither the formula contains any stop indication nor the backtester settings window has any stop activated.
You are putting values other than 1 in your Sell signal array, which causes AmiBroker to identify those exits as stops or profit targets. For a list of the exit types/reasons, see the ExitTrade function here: Porfolio Backtester Interface Reference .
longExitTrade ( long Bar, string Symbol, float Price, [optional] variant ExitType )
Low-level method that exits trade on any symbol. This method searches open trade list and if there is no open trade on given symbol it does nothing. Optional ExitType parameter specifies the reason for exit (1 - regular exit, 2 - max. loss, 3 - profit, 4 - trail, 5 - N-bar, 6 - ruin)