Hello QC Community,

I would like to know if there is an option to filter ONLY otm strikes in SetFilter. So instead:


option.SetFilter(lambda universe: universe.IncludeWeeklys().Strikes(-15, +15)
.Expiration(timedelta(int(self.DELTAX * 1.3)), timedelta(int(self.DELTAY * 1.8)))
)

with this:

.Strikes(range(-10,-15),range(+10,+15)?