Stock Quotes
Streams every BBO quote for one stock from the Nasdaq Basic feed. Each change to the best bid or offer delivers a Quote event to the registered callback.
The snippets below assume a connected client with streaming started — see Getting Started for the connect-and-stream ladder.
use thetadatadx::streaming::Contract;
use thetadatadx::streaming::{StreamData, StreamEvent};
client.stream().start_streaming(|event: &StreamEvent| {
if let StreamEvent::Data(StreamData::Quote { contract, bid, ask, .. }) = event {
println!("{} bid={bid} ask={ask}", contract.symbol);
}
})?;
let sub = Contract::stock("AAPL").quote();
client.stream().subscribe(sub.clone())?;
// Remove this stream; the session stays open for other subscriptions.
client.stream().unsubscribe(sub)?;Quote event fields
Each update arrives as a Quote event with these fields:
| Field | Type | Description |
|---|---|---|
contract | contract | Resolved contract identity (symbol, security type, and option fields). |
ms_of_day | i32 | Milliseconds since midnight Eastern Time. |
bid_size | i32 | Last BBO bid size. |
bid_exchange | i32 | Exchange code of the BBO bid. |
bid | f64 | Last BBO bid price. |
bid_condition | i32 | Quote condition code on the bid side. |
ask_size | i32 | Last BBO ask size. |
ask_exchange | i32 | Exchange code of the BBO ask. |
ask | f64 | Last BBO ask price. |
ask_condition | i32 | Quote condition code on the ask side. |
date | i32 | Trading date as a YYYYMMDD integer. |
received_at_ns | u64 | Local receive timestamp, nanoseconds since the Unix epoch. |
The contract field carries symbol, the security type, and — for options — expiration, right, and the strike. See Handling Events for the full event catalogue and per-language field shapes.
WebSocket frame
The native SDK callbacks (Rust/Python/TypeScript/C++) receive every field above. Each raw WebSocket frame (the Server tab) is { "header": {…}, "contract": {…}, "quote": {…} }: header and contract are always present, while the quote payload object carries only the terminal-compatible subset: ms_of_day, bid_size, bid_exchange, bid, bid_condition, ask_size, ask_exchange, ask, ask_condition, date. The remaining event fields are delivered to the SDK callbacks, not the quote payload object.