Many articles combining Exrem() and Equity() as below:
Buy = Exrem(Buy, Sell); Short = Exrem(Short, Cover);
Equity(1);
or
Buy = Exrem(Buy, Sell); Sell = Exrem(Sell, Buy);
Short = Exrem(Short, Cover); Cover = Exrem(Cover, Short);
Equity(1);
Q1) For a chart pane:
is it enough to use only Equity(1) to remove redundant Buy/Sell/Short/Cover?
so the Buy = Exrem(Buy, Sell); Short = Exrem(Short, Cover)
before the Equity(1);
is actually useless (or redundant) statements.
Q2) For a Backtester:
As I know that the Backtester will remove redundant signals,
and there is no need to draw an equity line,
so is it correct that I don't need to apply Exrem() or Equity(1)?
Thank you very much !