I am playing with the SuperTrend indicator and am unable to consolidate the time frame.

self.superTrend = self.STR(self.futuresSymbol, trendPeriod, trendMultiplier, trendMovingAverageType, Resolution.Minute)


# Doesn't do anything whatever the timedelta
self.RegisterIndicator(self.futuresSymbol, self.superTrend, timedelta(minutes=15))


Unsure how to run SuperTrend in a 15 min timeframe.

Thanks