STRASMORE/EXPLORE 2,549 QUERIES

cadence_lag

Answered against 22 years of US equities and 12 years of US options data and published with the query that produced it. This result is stored as of 2026-09-24, from ex-dividend-dates-on-the-asx.

as of ranking 5×3read in context →
cadence_lag — 5 rows by 3 columns, computed from US exchange, SIP and OPRA data.
payment_cadencerecords_countedavg_days_record_to_payment
Annual467613.4
Monthly400526.8
Other or unstated134416.4
Quarterly3525512.8
Semiannual (interim and final)922030.8
Rows × columns
5 × 3
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for cadence_lag, derived from the stored result.
ColumnTypeRangeNotes
payment_cadence text 5 distinct values (Annual, Monthly, Other or unstated…)
records_counted number 4,676 to 40,052
avg_days_record_to_payment number 6.4 to 30.8

Computed from Strasmore's warehouse of US exchange, SIP and OPRA market data. Equity prices are delayed; options greeks and implied volatility are end-of-day. This result is stored, not recomputed on load — it is exactly the numbers that were returned on , and the query below is what returned them.

Run it yourself

This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.

SELECT
    multiIf(freq = 1,  'Annual',
            freq = 2,  'Semiannual (interim and final)',
            freq = 4,  'Quarterly',
            freq = 12, 'Monthly',
                       'Other or unstated')          AS payment_cadence,
    count()                                          AS records_counted,
    round(avg(dateDiff('day', rec_date, pay_dt)), 1) AS avg_days_record_to_payment
FROM
(
    SELECT
        id,
        any(frequency)   AS freq,
        any(record_date) AS rec_date,
        any(pay_date)    AS pay_dt
    FROM global_markets.stocks_dividends
    WHERE ex_dividend_date >= today() - 730
      AND ex_dividend_date <  today()
      AND pay_date >= record_date
      AND dateDiff('day', record_date, pay_date) <= 120
    GROUP BY id
)
GROUP BY payment_cadence
ORDER BY payment_cadence
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.

More from this analysisex-dividend-dates-on-the-asx
settlement_gap ranking 8×4 → ko_timeline series 15×4 → Top 25 weekly-options underlyings by distinct contracts traded, with expiration weekdays ranking 25×4 → Annualized volatility vs total return, 25 large caps, calmest to wildest (~2 years) ranking 25×3 → SPY options median spread by expiration date, near-the-money strikes only ranking 25×4 → In-sample rank versus out-of-sample Sharpe, same 24 cells ranking 24×4 → See all 2,549 queries →