STRASMORE/EXPLORE 2,170 QUERIES

Board declaration to ex-date to payment, eight household payers

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 Who Sets the Ex-Dividend Date? Not the Board.

as of ranking 8×4read in context →
Board declaration to ex-date to payment, eight household payers — 8 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickerdeclaration_countavg_days_declared_to_exavg_days_ex_to_pay
MSFT1569.324.2
CSCO1548.520.1
KO1441.117.1
JNJ1441.114.7
CVX1518.323.1
XOM1514.726
PG159.825.7
AAPL159.64.4
Rows × columns
8 × 4
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 Board declaration to ex-date to payment, eight household payers, derived from the stored result.
ColumnTypeRangeNotes
ticker text 8 distinct values (AAPL, CSCO, CVX…)
declaration_count number 14 to 15 count
avg_days_declared_to_ex number 9.6 to 69.3
avg_days_ex_to_pay number 4.4 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.

the exact SQL behind every number
SELECT
    dividend_ticker                                      AS ticker,
    count()                                              AS declaration_count,
    round(avg(dateDiff('day', declared_on, ex_date)), 1) AS avg_days_declared_to_ex,
    round(avg(dateDiff('day', ex_date, paid_on)), 1)     AS avg_days_ex_to_pay
FROM
(
    SELECT
        id,
        any(ticker)           AS dividend_ticker,
        any(declaration_date) AS declared_on,
        any(ex_dividend_date) AS ex_date,
        any(pay_date)         AS paid_on
    FROM global_markets.stocks_dividends
    WHERE ticker IN ('AAPL', 'MSFT', 'KO', 'JNJ', 'PG', 'XOM', 'CVX', 'CSCO')
      AND ex_dividend_date >= toDate('2023-01-01')
      AND ex_dividend_date <  today()
      AND declaration_date >= toDate('2000-01-01')
      AND pay_date         >= toDate('2000-01-01')
    GROUP BY id
)
GROUP BY dividend_ticker
ORDER BY avg_days_declared_to_ex DESC

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 analysisWho Sets the Ex-Dividend Date? Not the Board
Ex-date alignment by payout cadence, since T+1 took effect ranking 6×4 One-time distributions by size: where the ex-date lands ranking 4×4 Regular dividends: ex-date before the record date, or on it series 43×5 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 Gap between ex-dividend date and record date, by year ranking 12×3 See all 2,170 queries →