So I’m running into a weird issue check out the following q statements and results
:5003>new_asks[0]143.9375:5003>pask_levels[5]143.9375:5003>new_asks[0] in pask_levels[5]0b:5003>new_asks[0] = pask_levels[5]1b:5003>pask_levels except new_asks[0]143.7813 143.8125 143.8438 143.875 143.9063 143.9375 143.9688:5003>new_asks[0]143.9375
if new_asks[0] is equal to pask_levels[5] why does new_asks[0] in pask_levels equal to false? Why does except not take out new_asks[0] if it is equivalent to the 5th element? Any ideas here?