STRASMORE/EXPLORE 2,170 QUERIES

Share of annual raises declared in the same month as the prior raise, 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-03, from When Companies Announce Dividend Raises.

as of ranking 10×4read in context →
Share of annual raises declared in the same month as the prior raise, by year — 10 rows by 4 columns, computed from US exchange, SIP and OPRA data.
yearcompaniessame_month_pctwithin_one_month_pct
2017110468.673.4
2018115964.778.2
2019139964.774
2020136864.374.5
2021127864.478.7
2022134360.977.3
2023157666.982.4
202416496281.9
2025198056.980.7
2026115474.582.8
Rows × columns
10 × 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 Share of annual raises declared in the same month as the prior raise, by year, derived from the stored result.
ColumnTypeRangeNotes
year number 2,017 to 2,026
companies number 1,104 to 1,980
same_month_pct number 56.9 to 74.5 percent
within_one_month_pct number 73.4 to 82.8 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
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 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, declared
    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
),
chained AS (
    SELECT ticker,
           declared,
           lagInFrame(declared, 1) OVER (PARTITION BY ticker ORDER BY declared ASC
                                         ROWS BETWEEN 1 PRECEDING AND CURRENT ROW) AS prior_declared
    FROM raises
)
SELECT toYear(declared) AS year,
       uniqExact(ticker) AS companies,
       round(100 * countIf(toMonth(declared) = toMonth(prior_declared)) / count(), 1) AS same_month_pct,
       round(100 * countIf(abs(toInt32(toRelativeMonthNum(declared))
                               - toInt32(toRelativeMonthNum(prior_declared)) - 12) <= 1) / count(), 1) AS within_one_month_pct
FROM chained
WHERE declared >= toDate('2017-01-01')
  AND dateDiff('day', prior_declared, declared) BETWEEN 250 AND 480
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 analysisWhen Companies Announce Dividend Raises
Dividend raises by declaration month: US recurring quarterly payers, July 2015 to July 2026 ranking 12×3 Typical raise month by company: twelve dividend growers, raises since 2016 series 12×5 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 Verizon (VZ) dividends per share by calendar year, 2005 to 2025 ranking 21×4 Verizon (VZ): annual dividend increase in cents and in percent, 2010 to 2025 ranking 16×3 See all 2,170 queries →