Hello everyone!

I've been working on strategies on QuantConnect for awhile now and I recently came across one detail that I've overlooked. When you initialize an indicator for a stock with its helper method in OnSecuritiesChanged, for example, a momentum percent (MOMP) indicator and you initialize with self.MOMP(symbol, period, resolution.daily)  the indicator should automatically update with the given universe resolution right? We don't need to manually update it.

The MOMP takes in close prices by default I believe, so does that mean that we don't need to register the indicator since we're not using any other custom values other than the values that we initialize it with? i.e. symbol, period, resolution

 

 

Author