STRASMORE/EXPLORE 2,469 QUERIES

From ex-dividend date to record date to the cash, in calendar days

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-20, from Can You Sell on the Ex-Dividend Date?.

as of table 8×6read in context →
From ex-dividend date to record date to the cash, in calendar days — 8 rows by 6 columns, computed from US exchange, SIP and OPRA data.
tickerex_dividendrecord_bookscash_arrivesrecord_gappayout_wait
AAPLAug 10, 2026Aug 10, 2026Aug 13, 202603
JNJAug 25, 2026Aug 25, 2026Sep 8, 2026014
KOSep 15, 2026Sep 15, 2026Oct 1, 2026016
MSFTAug 20, 2026Aug 20, 2026Sep 10, 2026021
CVXAug 19, 2026Aug 19, 2026Sep 10, 2026022
PGJul 24, 2026Jul 24, 2026Aug 17, 2026024
XOMAug 17, 2026Aug 17, 2026Sep 10, 2026024
PEPSep 4, 2026Sep 4, 2026Sep 30, 2026026
Rows × columns
8 × 6
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 From ex-dividend date to record date to the cash, in calendar days, derived from the stored result.
ColumnTypeRangeNotes
ticker text 8 distinct values (AAPL, CVX, JNJ…)
ex_dividend text 8 distinct values (Aug 10, 2026, Aug 17, 2026, Aug 19, 2026…)
record_books text 8 distinct values (Aug 10, 2026, Aug 17, 2026, Aug 19, 2026…)
cash_arrives text 6 distinct values (Aug 13, 2026, Aug 17, 2026, Oct 1, 2026…)
record_gap number every row is 0
payout_wait number 3 to 26

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
    ticker,
    formatDateTime(max(ex_dividend_date), '%b %e, %Y')                            AS ex_dividend,
    formatDateTime(argMax(record_date, ex_dividend_date), '%b %e, %Y')            AS record_books,
    formatDateTime(argMax(pay_date, ex_dividend_date), '%b %e, %Y')               AS cash_arrives,
    dateDiff('day', max(ex_dividend_date), argMax(record_date, ex_dividend_date)) AS record_gap,
    dateDiff('day', max(ex_dividend_date), argMax(pay_date, ex_dividend_date))    AS payout_wait
FROM global_markets.stocks_dividends
WHERE ticker IN ('AAPL', 'MSFT', 'JNJ', 'KO', 'PG', 'XOM', 'CVX', 'PEP')
  AND ex_dividend_date >= today() - 200
  AND ex_dividend_date <= today()
  AND dateDiff('day', ex_dividend_date, record_date) BETWEEN 0 AND 7
  AND dateDiff('day', ex_dividend_date, pay_date) BETWEEN 0 AND 120
GROUP BY ticker
ORDER BY payout_wait
⌘/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 analysisCan You Sell on the Ex-Dividend Date?
Share of 2024 US dividends whose record date fell on the ex-dividend date series 12×3 Shares held short against average daily volume, large dividend payers ranking 8×4 Ex-date opening gap by dividend size, US quarterly dividends 2024 to 2025 ranking 5×4 Dividends that went ex AFTER the record date: special vs. recurring, trailing 12 months table 2×6 The T+1 cutover, week by week: share of dividends with ex-date = record date, April–July 2024 ranking 18×3 Ex-date vs. record date by year: share identical, and the median gap in calendar days ranking 12×4 See all 2,469 queries →