Self-taught python coder here and clueless on some of the things I am trying out: 

What exactly does data resolution means? I have been reading through the documentations and still not getting it. Take for example, what difference do the following resolutions make when utilized within an algorithm

self.rsi = algo.RSI(symbol, 10, Resolution.Daily) #Daily resolution

self.rsi = algo.RSI(symbol, 10, Resolution.Hour) # Hourly resolution

self.rsi = algo.RSI(symbol, 10, Resolution.Minute). #Minute resolution

Now, if you find yourself wanting to laugh at my question, I will help you laugh at myself :), but will appreciate adding some knowledge on this

Author