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.