Hello! I am using the MIN indicator like this:

#Initialize spy = self.AddEquity('SPY', Resolution.Hour) self.minimum = self.MIN('SPY', 50, Resolution.Daily, Field.Low)

In my OnData function I have these asserts:

#OnData if data["SPY"] == None: return if not self.minimum.IsReady: return

During the backtest it seems like the minimum indicator isn't ready until 50 days after the algorithm is started. WIll this happen when I live trade as well? Is there a way to backfill an indicator? 

 

Thanks!

Author