STRASMORE/EXPLORE 2,170 QUERIES

Days between consecutive ex-dividend dates, against the 121-day window

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 Qualified Dividend Holding Period: 61 Days.

as of ranking 6×3read in context →
Days between consecutive ex-dividend dates, against the 121-day window — 6 rows by 3 columns, computed from US exchange, SIP and OPRA data.
tickeravg_days_between_ex_datesqualifying_window_days
AAPL91.3121
JNJ91.3121
MSFT91.3121
KO91.4121
PG91.5121
XOM91.5121
Rows × columns
6 × 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 Days between consecutive ex-dividend dates, against the 121-day window, derived from the stored result.
ColumnTypeRangeNotes
ticker text 6 distinct values (AAPL, JNJ, KO…)
avg_days_between_ex_dates number 91.3 to 91.5
qualifying_window_days number every row is 121

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
    ticker,
    round(avg(gap_days), 1) AS avg_days_between_ex_dates,
    121                     AS qualifying_window_days
FROM
(
    SELECT
        ticker,
        arrayJoin(arrayDifference(arraySort(groupArray(toUInt32(toDate(ex_dividend_date)))))) AS gap_days
    FROM
    (
        SELECT DISTINCT
            ticker,
            ex_dividend_date
        FROM global_markets.stocks_dividends
        WHERE ticker IN ('AAPL', 'MSFT', 'KO', 'JNJ', 'PG', 'XOM')
          AND cash_amount > 0
          AND ex_dividend_date >= '2019-01-01'
          AND ex_dividend_date <  '2026-08-01'
    )
    GROUP BY ticker
)
WHERE gap_days BETWEEN 45 AND 200
GROUP BY ticker
ORDER BY avg_days_between_ex_dates

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 analysisQualified Dividend Holding Period: 61 Days
How long after the ex-date the cash actually arrives ranking 10×3 Every 121-day window around a Coca-Cola ex-dividend date series 14×6 Opening drop per dollar of dividend paid, ex-dates 2021 to 2025 ranking 10×4 Quarterly dividend against ordinary overnight moves, 2021 to 2025 ranking 10×4 Pooled opening drop per dollar paid, by calendar year ranking 5×3 KO: dividend per share against the realised opening drop, every ex-date 2021 to 2025 series 20×4 See all 2,170 queries →