Backtestregular

To make sure that I understand the following functions, could you answer the following question?
Would it be redundant to use the ExRem() function to remove activations once we are inside a trade

Buy = ExRem( Buy, Sell );
Sell = ExRem( Sell, Buy );
Short = ExRem( Short, Cover );
Cover = ExRem( Cover, Short ); or paste code here

if in the same code I use

SetBacktestMode( backtestRegular );

Thanks in advance.

A must-read tutorial chapter:

It discuses how excess signals are removed automatically by regular mode of backtest.

1 Like

This topic was automatically closed 100 days after the last reply. New replies are no longer allowed.