During the backtesting my strategy, I can't get the full daily data for anything except the ‘SPY’. Always got the same error as:

238008_1706142573.jpg

 

maybe I'm missing sth but I thought even in the free version, we should have also access to the full data of other instruments such as ‘AAPL’ or ‘QQQ’, no?
this is my OnData function:


def OnData(self, data: Slice):

        if not self.spy in data:

            return

        price = data[self.spy].Close