Skip to content

Implied Dividend

Family: Stat-arb

What it computes

Emits ImpliedDividendTick ticks carrying dividend_pv, dividend_yield off chain + spot + r.

Available on the live, historical, and replay drives.

Methodology

Parity-implied PV(div).

See the methodology overview for the citation index.

Inputs

Chain + spot + r.

Key outputs

Dividend_pv, dividend_yield. The full field set is in the tick table below.

Output schema (ImpliedDividendTick)

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

FieldTypeDescription
rootArc<str>Underlying symbol.
datei32Trading session date (YYYYMMDD).
ms_of_dayi32Milliseconds since midnight at emission time.
expirationi32Expiration date (YYYYMMDD).
dtei32Calendar days from date to expiration.
spotf64Spot price used in the parity arithmetic. f64::NAN when no underlying trade has landed yet on the session.
ratef64Risk-free rate used in the parity arithmetic. f64::NAN when the rate provider returned None.
t_yearsf64Year-fraction time-to-expiry.
k_starf64K* — strike at which `
n_strikes_avgu32Number of strikes admitted into the band average. 1 means only K* itself contributed (sparse chain).
implied_dividend_pvf64Implied present-value of dividends paid between date and expiration (USD). Median of the per-strike parity readings inside the ATM band. f64::NAN when no strike admitted.
implied_dividend_yieldf64Annualised continuous dividend yield: q = D / (S · T). f64::NAN when spot / T are non-positive or the PV reading is itself NaN.

Configuration (ImpliedDividendParams)

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

FieldTypeDescription
contractsSecurityFilterContracts the subscription tracks.
rateArc<dyn RateService>Risk-free rate provider — used in the parity discount factor.
venuesExchangeFilterExchange / venue admission policy.
emitEmitPolicyEmission policy. Defaults to [EmitPolicy::OnExchangeInterval] at one row per second per (symbol, expiration): the parity-implied dividend curve is a property of the whole chain snapshot, so the per-second event-time cadence carries the full signal without paying a chain sweep per inbound quote. OnEveryTick fires per admitted Quote; OnClose accumulates and fires on watermark.
band_radiusu8Half-width of the ATM strike band, in listed strikes either side of K*. Default [DEFAULT_BAND_RADIUS] (2 → up to 5 strikes contribute).
spot_cacheSpotPriceCacheShared spot price cache.
calendarArc<dyn MarketCalendar>Market calendar provider.

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().implied_dividend(["SPX"]).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()
  .impliedDividend(["SPX"])
  .onEvent((tick) => {
    console.log(tick);
  });

Rust

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

use kairos::{Client, ImpliedDividendRow};

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

let sub = client
    .live()
    .implied_dividend(["SPX"])
    .on_event(|row: &ImpliedDividendRow| println!("implied_dividend_yield={} k_star={}", row.implied_dividend_yield, row.k_star))?;
// ... later ...
sub.unsubscribe();
# Ok(())
# }

Proprietary. All rights reserved.