Hello,

I'm following this guide but I'm only getting data for standard index options, and not weekly options.  I am trying to work with 0dte option on SPX.  I am only getting the chain for 06/16/2023 (SPXW 230616C04175000).  It's probably something silly, but I can't find it.  Here is the code:

    def Initialize(self):
        self.SetStartDate(2023, 6, 1)
        self.SetEndDate(2023, 6, 1)
        self.SetCash(100000)

        index_symbol = self.AddIndex("SPX").Symbol
        option = self.AddIndexOption(index_symbol, "SPXW")
        option.SetFilter(-2, 2, 0, 30)
        self.symbol = option.Symbol
        self.log_count=0

    def OnData(self, data: Slice):
        weekly_chain = data.OptionChains.get(self.symbol)
        if weekly_chain:
            for contract in weekly_chain:
                if self.log_count >100:
                    return
                self.Log(f"{contract.Symbol} price at {data.Time}: {contract.LastPrice}")
                self.log_count+=1