What IBKR subscription do I need , I have 

US Equities and Options

Futures Bundle

 

 

Runtime Error: No security definition has been found for the request. Origin: [Id=15] Subscribe: SPX 250620P05920000 (OPT SPX USD Smart 20250619 5920 P)
2025-06-02 19:17:45 : Runtime Error: No security definition has been found for the request. Origin: [Id=15] Subscribe: SPX 250620P05920000 (OPT SPX USD Smart 20250619 5920 P): StackTrace: No security definition has been found for the request. Origin: [Id=15] Subscribe: SPX 250620P05920000 (OPT SPX USD Smart 20250619 5920 P)

I have this code -


 

regular option SPX contracts

self.spx = self.add_index("SPX", Resolution.MINUTE)

self.spx_options = self.add_index_option("SPX")

self.spx_options.set_filter(lambda u: (u.strikes(0, 1).expiration(0, 45)))


 

# weekly option SPX contracts

spxw = self.add_index_option("SPX", "SPXW")

# set our strike/expiry filter for this option chain

spxw.set_filter(lambda u: (u.strikes(0, 1)

# single week ahead since there are many SPXW contracts and we want to preserve performance

.expiration(0, 45)

.include_weeklys()))


 

self.spxw_option = spxw.symbol

 

self.spx = self.add_index("SPX", Resolution.MINUTE)

self.spx_option = self.add_index_option("SPX","SPXW", Resolution.MINUTE)

self.spx_option.set_filter(-13, 13, TimeSpan.from_days(0), TimeSpan.from_days(45))