Maybe I'm just totally lost, but how would one going about using the Max attribute? Im trying to create a variable for an entry signal based on a 55 day high, just to get a working algorithm going.

self.LE_Signal = self.Max(self.Symbol, 55, Resolution.Daily)

I keep getting an error saying "

AttributeError : 'Algorithm' object has no attribute 'Max'

Author