Skip to content

Rogers Satchell Vol

Family: Volatility

What it computes

Emits RogersSatchellVolTick ticks carrying realized_vol, bar_variance, n_intraday_bars off stock trade tape (5m bars).

Available on the live, historical, and replay drives.

Methodology

Rogers / Satchell (1991) drift-independent OHLC variance kernel σ²_RS = ln(H/C) · ln(H/O) + ln(L/C) · ln(L/O) aggregated over a rolling per-bar (O, H, L, C) window.

See the methodology overview for the citation index.

Inputs

Stock trade tape (5m bars).

Key outputs

Realized_vol, bar_variance, n_intraday_bars. The full field set is in the tick table below.

Output schema (RogersSatchellVolTick)

The field / type / description table below is regenerated from the RogersSatchellVolTick 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) at emission time.
ms_of_dayi32Milliseconds since midnight ET at emission time.
realized_volf64Rogers / Satchell (1991) annualised realized volatility. NaN with an empty FIFO.
bar_variancef64Rogers / Satchell (1991) per-bar variance averaged across the window. Non-negative by construction. NaN on empty FIFO.
n_intraday_barsi32Count of sealed per-bar OHLC quadruples currently inside the rolling window.

Configuration (RogersSatchellVolParams)

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

FieldTypeDescription
contractsSecurityFilterContracts the subscription tracks. Stocks only.
conditionsConditionPolicyTrade-condition admission policy.
venuesExchangeFilterExchange / venue admission policy.
bar_interval_msi32Per-bar cadence in milliseconds.
window_barsi32Rolling-window length in bars.
min_emit_interval_msi32Minimum interval between consecutive emissions per symbol, in milliseconds. Set to 0 to publish on every sealed bar.

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

Rust

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

use kairos::{Client, RogersSatchellVolRow};

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

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

Proprietary. All rights reserved.