STRASMORE/EXPLORE 2,170 QUERIES

Gap between ex-dividend date and record date, by year

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-08-22, from How Stock Settlement Works Under T+1.

as of ranking 12×3read in context →
Gap between ex-dividend date and record date, by year — 12 rows by 3 columns, computed from US exchange, SIP and OPRA data.
yearavg_gap_dayssame_day_pct
20152.910.1
20162.80
20172.30
20181.510.2
20191.530.1
20201.410
20211.450.1
20221.480.1
20231.430.1
20240.5463.7
20250.0398.1
20260.0398.2
Rows × columns
12 × 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 Gap between ex-dividend date and record date, by year, derived from the stored result.
ColumnTypeRangeNotes
year text 12 distinct values (2015, 2016, 2017…)
avg_gap_days number 0.03 to 2.91
same_day_pct number 0 to 98.2 percent

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.

the exact SQL behind every number
SELECT
    toString(toYear(ex_date))                       AS year,
    round(avg(gap_days), 2)                         AS avg_gap_days,
    round(100 * countIf(gap_days = 0) / count(), 1) AS same_day_pct
FROM
(
    SELECT
        ticker,
        ex_dividend_date                                    AS ex_date,
        dateDiff('day', ex_dividend_date, max(record_date)) AS gap_days
    FROM global_markets.stocks_dividends
    WHERE ex_dividend_date >= '2015-01-01'
      AND ex_dividend_date <  today()
      AND record_date >= ex_dividend_date
      AND match(ticker, '^[A-Z]{1,5}$')
    GROUP BY ticker, ex_dividend_date
)
GROUP BY year
ORDER BY year

Run your own version of this

The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.

More from this analysisHow Stock Settlement Works Under T+1
Microsoft dividend dates, from the T+2 era into T+1 series 13×6 Trade date to settlement date across real sessions, November 2025 series 11×5 Ex-dividend date to payment date, latest 2026 dividend for nine household payers series 9×4 Board declaration to ex-date to payment, eight household payers ranking 8×4 Shares held short against average daily volume, large dividend payers ranking 8×4 Ex-date alignment by payout cadence, since T+1 took effect ranking 6×4 See all 2,170 queries →