Howdy,

I'm getting errors for all equities when I try to backtest for June. My code looks like: 

class SleepyVioletAlligator(QCAlgorithm):


    def initialize(self):
        self.set_start_date(2024, 6, 10)
        self.set_end_date(2024, 6, 11)


        self.set_cash(100000)
        self.symbol = self.add_equity("AAPL", Resolution.SECOND).symbol

      And the error I get is:

302|4:49:28:Backtest Handled Error: No data loaded for AAPL because there were no tradeable dates for this security.

 

If I change the dates to January 24, rather than June, it works.

 

What's up?