Hi 

When I run backtest my strategy works well there is no error but when I deploy live it show me an error.
Runtime Error: 'AAPL' wasn't found in the Slice object, likely because there was no-data at this moment in time and it wasn't possible to fillforward historical data. Please check the data exists before accessing it with data.ContainsKey("AAPL")
  at update
    if data[self.symbol] is None:
       ~~~~^^^^^^^^^^^^^
 in ppoAlphaModel.py: line 36
 Stack Trace: 'AAPL' wasn't found in the Slice object, likely because there was no-data at this moment in time and it wasn't possible to fillforward historical data. Please check the data exists before accessing it with data.ContainsKey("AAPL")
  at update
    if data[self.symbol] is None:
       ~~~~^^^^^^^^^^^^^
 in ppoAlphaModel.py: line 36


can you explain me why it is happening and how can I handle this error ?