settlement_gap
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.
| year | avg_days_ex_to_record | same_day_pct | dividends_counted |
|---|---|---|---|
| 2019 | 1.54 | 0.1 | 39232 |
| 2020 | 1.42 | 0 | 36361 |
| 2021 | 1.46 | 0.1 | 38558 |
| 2022 | 1.48 | 0.1 | 40410 |
| 2023 | 1.43 | 0.1 | 41603 |
| 2024 | 0.54 | 63.4 | 44200 |
| 2025 | 0.03 | 97.9 | 49129 |
| 2026 | 0.03 | 98.2 | 40738 |
- Rows × columns
- 8 × 4
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
year |
number | 2,019 to 2,026 | |
avg_days_ex_to_record |
number | 0.03 to 1.54 | |
same_day_pct |
number | 0 to 98.2 | percent |
dividends_counted |
number | 36,361 to 49,129 |
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 deduped AS
(
SELECT
id,
any(ex_dividend_date) AS ex_date,
any(record_date) AS rec_date
FROM global_markets.stocks_dividends
WHERE ex_dividend_date >= toDate('2019-01-01')
AND ex_dividend_date < today()
AND record_date >= ex_dividend_date
AND dateDiff('day', ex_dividend_date, record_date) <= 7
GROUP BY id
)
SELECT
toYear(ex_date) AS year,
round(avg(dateDiff('day', ex_date, rec_date)), 2) AS avg_days_ex_to_record,
round(100 * countIf(rec_date = ex_date) / count(), 1) AS same_day_pct,
count() AS dividends_counted
FROM deduped
GROUP BY year
ORDER BY year
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.