Hi Everyone,

I’ve been encountering an issue with the option contracts returned by slice.OptionChains that seems inconsistent with what I typically observe in the market. Specifically, I'm seeing contracts with strike prices significantly above the current stock price on their expiration day (0DTE), which I’ve never seen in actual trading scenarios. 

Here is how I'm looking for the contracts. Thank you!

option_chain = slice.OptionChains.get(self.option.Symbol, None)
        if option_chain:
           
            for contract in sorted(option_chain, key=lambda x: x.Strike):
           
                if contract.Expiry.date() == self.Time.date() and contract.Right == OptionRight.Call:
                    if contract.Strike > self.avgP: