Appearance
Queue Imbalance
Family: Microstructure
What it computes
Emits QueueImbalanceTick ticks carrying queue_imbalance, bid_size, ask_size, total_size off stock NBBO quote tape.
Available on the live, historical, and replay drives.
Methodology
Cartea / Donnelly / Jaimungal (2015) signed NBBO depth pressure (bid_size − ask_size) / (bid_size + ask_size) in [-1, +1] — short-horizon mid-price-tick predictor under the standing best-bid / best-ask depth.
See the methodology overview for the citation index.
Inputs
Stock NBBO quote tape.
Key outputs
Queue_imbalance, bid_size, ask_size, total_size. The full field set is in the tick table below.
Output schema (QueueImbalanceTick)
The field / type / description table below is regenerated from the QueueImbalanceTick Rust source by docs-site/scripts/inject-doc-tables.ts on every npm run docs:build. Do not hand-edit between the sentinels.
| Field | Type | Description |
|---|---|---|
symbol | Arc<str> | Underlying symbol (interned). Stock-only analytic. |
date | i32 | Trading-session date (YYYYMMDD). |
ms_of_day | i32 | Milliseconds since midnight at emission time. |
queue_imbalance | f64 | Cartea-Donnelly-Jaimungal queue imbalance: (bid_size − ask_size) / (bid_size + ask_size). Range [-1, +1]. Positive = buyer-side depth dominates; negative = seller-side depth dominates. |
bid_size | i32 | Bid size at emission time (resting shares on the best bid). |
ask_size | i32 | Ask size at emission time (resting shares on the best ask). |
total_size | i32 | Total depth — bid_size + ask_size. Surfaced so consumers can audit the queue-imbalance denominator and distinguish a thin-book regime (small total depth) from a balanced-but-deep regime (large total depth, zero imbalance). |
Configuration (QueueImbalanceParams)
Regenerated from the QueueImbalanceParams Rust source — see the note above.
| Field | Type | Description |
|---|---|---|
contracts | SecurityFilter | Contracts the subscription tracks. Stock-only NBBO stream — the filter must resolve to stock contracts. |
conditions | ConditionPolicy | Trade-condition admission policy applied to the NBBO bid-side condition byte; the same policy gates trade prints on related analytics so the filtered universe is consistent. |
venues | ExchangeFilter | Exchange / venue admission policy. |
min_emit_interval_ms | i32 | Minimum interval between consecutive emissions per symbol, in milliseconds. Defaults to [DEFAULT_MIN_EMIT_INTERVAL_MS] (0 ms — every admission emits). |
Example
Python
python
import kairos_thetadata as kt
client = kt.Client.connect(kt.Credentials.from_env())
def on_event(row):
print(row)
sub = client.live().queue_imbalance(["QQQ"]).on_event(on_event)
sub.wait(timeout_seconds=60.0)TypeScript
typescript
import { Client, Credentials } from "kairos-thetadata";
const client = await Client.connect(Credentials.fromEnv());
await client
.live()
.queueImbalance(["QQQ"])
.onEvent((tick) => {
console.log(tick);
});Rust
rust
// Cargo.toml:
// kairos = "0.1"
use kairos::{Client, QueueImbalanceRow};
# fn run() -> Result<(), Box<dyn std::error::Error>> {
let client = Client::connect(("me@example.com", "secret"))?;
let sub = client
.live()
.queue_imbalance(["QQQ"])
.on_event(|row: &QueueImbalanceRow| println!("queue_imbalance={} bid_size={}", row.queue_imbalance, row.bid_size))?;
// ... later ...
sub.unsubscribe();
# Ok(())
# }