开云体育

ctrl + shift + ? for shortcuts
© 2025 开云体育

Is it possible to get pre-market bid/ask?


 

I'm having some trouble getting bid/ask/last information on pre-market.
The bid/ask come as -1, and the last sometimes is not present.
I've been trying

```
contract = Stock('AAPL', 'OVERNIGHT', 'USD')
ticker = ib.reqMarketData(contract)

# The result
Ticker(contract=Stock(symbol='AAPL', exchange='OVERNIGHT', currency='USD'), time=datetime.datetime(2025, 1, 9, 14, 25, 30, 913270, tzinfo=datetime.timezone.utc), minTick=0.01, bid=-1.0, bidSize=0.0, ask=-1.0, askSize=0.0, close=242.7, bboExchange='9c0001', snapshotPermissions=3)
```
I think to get the "last", I use the specific exchange, at least looking at my previous logs I see
```
# using OVERNIGHT
Ticker(contract=Stock(symbol='RS', exchange='OVERNIGHT', currency='USD'), time=datetime.datetime(2025, 1, 8, 13, 37, 45, 829020, tzinfo=datetime.timezone.utc), minTick=0.01, bid=-1.0, bidSize=0.0, ask=-1.0, askSize=0.0, volume=49.0, close=270.11, ticks=[TickData(time=datetime.datetime(2025, 1, 8, 13, 37, 45, 829020, tzinfo=datetime.timezone.utc), tickType=8, price=-1.0, size=49.0), TickData(time=datetime.datetime(2025, 1, 8, 13, 37, 45, 829020, tzinfo=datetime.timezone.utc), tickType=9, price=270.11, size=0.0)], bboExchange='a60001', snapshotPermissions=3)

# using NYSE
Ticker(contract=Stock(symbol='RH', exchange='NYSE', currency='USD'), time=datetime.datetime(2025, 1, 8, 14, 8, 9, 599540, tzinfo=datetime.timezone.utc), minTick=0.01, bid=-1.0, bidSize=0.0, ask=-1.0, askSize=0.0, last=408.0, lastSize=1.0, volume=61.0, close=403.82, bboExchange='a60001', snapshotPermissions=3)
```

Do I need to do this some other way?
I haven't bought a level 2 subscription, do I need to buy that, and then I would have to call a different function to get the bid and ask?

Thanks for any pointer.


 

Hey Code Block,?
?
I have level 2 data and get the same output as you during non-market hours. There's also this relevant bit in the IB documentation:
?
Frozen---2---Frozen market data is the last data recorded at market close. In TWS, Frozen data is displayed in gray numbers. When you set the market data type to Frozen, you are asking TWS to send the last available quote when there is not one currently available. For instance, if a market is currently closed and real time data is requested, -1 values will commonly be returned for the bid and ask prices to indicate there is no current bid/ask data available. TWS will often show a ‘frozen’ bid/ask which represents the last value recorded by the system. To receive the last know bid/ask price before the market close, switch to market data type 2 from the API before requesting market data. API frozen data requires TWS/IBG v.962 or higher and the same market data subscriptions necessary for real time streaming data.
?
For reference, here's a link to documentation's text: https://ibkrcampus.com/campus/ibkr-api-page/twsapi-doc/#delayed-market-data