Hello everyone!

I have an algo that trades HeikinAshi candles. First I tested it on daily bars. Then I changed the equity resolution to hourly bars, keeping the HeikinAshi at Daily.

Before:

self.AddEquity(self.symbol, Resolution.Daily) self.ha = self.HeikinAshi(self.symbol, Resolution.Daily)

After:

self.AddEquity(self.symbol, Resolution.Hour) self.ha = self.HeikinAshi(self.symbol, Resolution.Daily)

The backtest results vary significantly, so I suspect I'm doing something wrong. I want to keep the resolution of HeikenAshi bars at Daily reguardless of equity resolution, and expect the same backtest result.

Author