STRASMORE/EXPLORE 2,648 QUERIES

distribution_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-26, from spy-vs-voo-vs-splg.

as of table 3×5read in context →
distribution_lag — 3 rows by 5 columns, computed from US exchange, SIP and OPRA data.
tickerdistributionsavg_days_ex_to_paylongest_days_ex_to_payshortest_days_ex_to_pay
SPY1342.54740
VOO123.862
SPLG9342
Rows × columns
3 × 5
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 distribution_lag, derived from the stored result.
ColumnTypeRangeNotes
ticker text 3 distinct values (SPLG, SPY, VOO)
distributions number 9 to 13
avg_days_ex_to_pay number 3 to 42.5
longest_days_ex_to_pay number 4 to 47
shortest_days_ex_to_pay number 2 to 40

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.

WITH payouts AS
(
    SELECT
        ticker,
        id,
        any(ex_dividend_date) AS ex_date,
        any(pay_date)         AS paid_on
    FROM global_markets.stocks_dividends
    WHERE ticker IN ('SPY', 'VOO', 'SPLG')
      AND ex_dividend_date >= '2023-09-01'
      AND ex_dividend_date <  '2026-09-20'
      AND pay_date > ex_dividend_date
    GROUP BY ticker, id
)
SELECT
    ticker,
    count()                                           AS distributions,
    round(avg(dateDiff('day', ex_date, paid_on)), 1)  AS avg_days_ex_to_pay,
    max(dateDiff('day', ex_date, paid_on))            AS longest_days_ex_to_pay,
    min(dateDiff('day', ex_date, paid_on))            AS shortest_days_ex_to_pay
FROM payouts
GROUP BY ticker
ORDER BY avg_days_ex_to_pay DESC
⌘/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 analysisspy-vs-voo-vs-splg
monthly_tracking series 11×5 → options_market ranking 3×3 → quoted_spreads ranking 2×4 → fund_liquidity ranking 2×4 → The 2s10s spread, every print of the half table 124×2 → The 2s10s spread, every print of the half table 124×2 → See all 2,648 queries →