Skip to content

Price Dispersion

Family: Microstructure

What it computes

Emits PriceDispersionTick ticks carrying dispersion, mean_price, std_dev, n_observations off trade tape.

Available on the live, historical, and replay drives.

Methodology

Within-window dimensionless std(prices) / mean(prices) liquidity-stratification proxy.

See the methodology overview for the citation index.

Inputs

Trade tape.

Key outputs

Dispersion, mean_price, std_dev, n_observations. The full field set is in the tick table below.

Output schema (PriceDispersionTick)

The field / type / description table below is regenerated from the PriceDispersionTick Rust source by docs-site/scripts/inject-doc-tables.ts on every npm run docs:build. Do not hand-edit between the sentinels.

FieldTypeDescription
symbolArc<str>Underlying symbol (interned).
datei32Trading-session date (YYYYMMDD).
ms_of_dayi32Milliseconds since midnight at emission time.
dispersionf64Within-window dimensionless dispersion ratio std / mean — the liquidity-stratification proxy. NaN when N < 2 or mean ≤ 0.
mean_pricef64Rolling-window mean trade price. NaN when N == 0.
std_devf64Rolling-window sample standard deviation of the trade prices. NaN when N < 2.
n_observationsi32Number of admitted prints in the rolling window.

Configuration (PriceDispersionParams)

Regenerated from the PriceDispersionParams Rust source — see the note above.

FieldTypeDescription
contractsSecurityFilterContracts the subscription tracks. Stock-only — the analytic silently ignores option / index trades at the on_tick entry point.
conditionsConditionPolicyTrade-condition admission policy applied to every print.
venuesExchangeFilterExchange / venue admission policy.
window_msi32Rolling-window length in milliseconds. Defaults to [DEFAULT_WINDOW_MS] (60_000 ms).
min_emit_interval_msi32Minimum interval between consecutive emissions per symbol, in milliseconds. Defaults to [DEFAULT_MIN_EMIT_INTERVAL_MS] (1_000 ms).

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().price_dispersion(["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()
  .priceDispersion(["QQQ"])
  .onEvent((tick) => {
    console.log(tick);
  });

Rust

rust
// Cargo.toml:
//   kairos = "0.1"

use kairos::{Client, PriceDispersionRow};

# fn run() -> Result<(), Box<dyn std::error::Error>> {
let client = Client::connect(("me@example.com", "secret"))?;

let sub = client
    .live()
    .price_dispersion(["QQQ"])
    .on_event(|row: &PriceDispersionRow| println!("dispersion={} mean_price={}", row.dispersion, row.mean_price))?;
// ... later ...
sub.unsubscribe();
# Ok(())
# }

Proprietary. All rights reserved.