STRASMORE/EXPLORE 2,433 QUERIES

Typical raise month by company: twelve dividend growers, raises since 2016

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-03, from When Companies Announce Dividend Raises.

as of series 12×5read in context →
Typical raise month by company: twelve dividend growers, raises since 2016 — 12 rows by 5 columns, computed from US exchange, SIP and OPRA data.
tickertypical_monthraises_totalraises_in_typical_monthsame_month_pct
HDFeb1111100
KOFeb1111100
JNJApr1111100
PGApr1010100
WMTFeb99100
MMMFeb111091
CATJun9889
ADPNov121083
PEPMay11982
CVXJan10770
MCDSep11655
XOMOct9444
Rows × columns
12 × 5
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 Typical raise month by company: twelve dividend growers, raises since 2016, derived from the stored result.
ColumnTypeRangeNotes
ticker text 12 distinct values (ADP, CAT, CVX…)
typical_month text 8 distinct values (Apr, Feb, Jan…)
raises_total number 9 to 12
raises_in_typical_month number 4 to 11
same_month_pct number 44 to 100 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.

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 quarterly AS (
    SELECT ticker,
           ex_dividend_date,
           round(max(toFloat64(cash_amount)), 4) AS amount,
           max(declaration_date) AS declared
    FROM global_markets.stocks_dividends
    WHERE ticker IN ('JNJ','KO','PG','PEP','MCD','WMT','CVX','XOM','MMM','CAT','HD','ADP')
      AND distribution_type = 'recurring'
      AND frequency = 4
      AND cash_amount > 0
      AND declaration_date > toDate('2015-06-30')
      AND ex_dividend_date >= toDate('2015-07-01')
      AND ex_dividend_date <= toDate('2026-07-31')
    GROUP BY ticker, ex_dividend_date
),
stepped AS (
    SELECT ticker,
           declared,
           amount,
           ex_dividend_date,
           lagInFrame(amount, 1) OVER (PARTITION BY ticker ORDER BY ex_dividend_date ASC
                                       ROWS BETWEEN 1 PRECEDING AND CURRENT ROW) AS prior_amount,
           lagInFrame(ex_dividend_date, 1) OVER (PARTITION BY ticker ORDER BY ex_dividend_date ASC
                                       ROWS BETWEEN 1 PRECEDING AND CURRENT ROW) AS prior_ex_date
    FROM quarterly
),
raises AS (
    SELECT ticker,
           formatDateTimeInJodaSyntax(declared, 'MMM') AS month_label,
           toMonth(declared) AS month_index
    FROM stepped
    WHERE prior_amount > 0
      AND amount > prior_amount * 1.005
      AND dateDiff('day', prior_ex_date, ex_dividend_date) BETWEEN 45 AND 200
),
per_month AS (
    SELECT ticker,
           month_label,
           month_index,
           count() AS raises_in_month
    FROM raises
    GROUP BY ticker, month_label, month_index
)
SELECT ticker,
       argMax(month_label, raises_in_month * 100 + month_index) AS typical_month,
       sum(raises_in_month) AS raises_total,
       max(raises_in_month) AS raises_in_typical_month,
       round(100 * max(raises_in_month) / sum(raises_in_month)) AS same_month_pct
FROM per_month
GROUP BY ticker
HAVING sum(raises_in_month) >= 5
ORDER BY same_month_pct DESC, raises_total DESC
⌘/Ctrl + Enter
More from this analysisWhen Companies Announce Dividend Raises
Dividend raises by declaration month: US recurring quarterly payers, July 2015 to July 2026 ranking 12×3 JNJ dividend raises: declaration date, old rate, new rate, 2016 to 2026 table 11×5 Declaration record by year: recurring dividends, count, and days from declaration to ex-date table 11×5 Share of annual raises declared in the same month as the prior raise, by year ranking 10×4 Companies expected to raise their dividend this month, declared names first series 13×7 MSFT dividend raise declarations, 2019 to 2025 (pinned) series 7×6 See all 2,433 queries →