Hey just a question about indicators; 

When I add a security(e.g. SPY) as, let's say, Resolution.Daily, I assumed that when I add a corresponding indicator for that security, the default Resolution would also be Daily(assuming I leave that parameter blank when adding the Indicator.)

e.g. I assumed that:

self.RSI("SPY", 14) 

would technically default to:

self.RSI("SPY", 14, Resolution.Daily)

But when I decided to include the Resolution parameter when adding the indicator(so that it is now self.RSI("SPY", 14, Resolution.Daily)), the backtest results are now different; I seem to be obviously missing something, I was hoping someone could help me out with this. 

Author