Hi all,

This might be a trivial question but I didn't find much info on it. I was wondering if someone could help with this,

Let's say I want to find the max of 8 days in minutely or hourly resolution using the MAX indicator.

I know that for a daily resolution:

daily = self.MAX(symbol, 8, Resolution.Daily)

What happens for hourly? Is it 24 hours for one day? Like this: Hourly = self.MAX(symbol, 8*24 , Resolution.Hour)

which would render, minutely = self.MAX(symbol, 8*24*60  , Resolution.Hour) ?

The reason for that is that I want the indicator to capture the most recent surge or drop in stock as well. Correct me if I am wrong, but using a daily resolution does not seem to account for today's changes.

Thanks,