wallstreet icon indicating copy to clipboard operation
wallstreet copied to clipboard

'bid' and 'ask' are often 0, in an inconsistent pattern

Open gusl opened this issue 4 years ago • 2 comments

call = Call('SPY', d=18, m=12, y=2020) print(call.strikes[30:40])

call.set_strike(211) print(call.ask) call.set_strike(212) print(call.ask) call.set_strike(213) print(call.ask)

Output:

(205, 207, 208, 209, 210, 211, 212, 213, 214, 215) 0.0 79.43 0.0

This seems to happens mostly at night, when the market is closed.

gusl avatar May 01 '20 06:05 gusl

same for me too

andyslater avatar May 14 '20 05:05 andyslater

That happens to me way after market hours.

windrider09 avatar May 14 '20 06:05 windrider09