STRASMORE/EXPLORE 2,170 QUERIES

Monthly count of dividend declarations across the market

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 How Preferred Stock Dividends Work.

as of series 36×4read in context →
Monthly count of dividend declarations across the market — 36 rows by 4 columns, computed from US exchange, SIP and OPRA data.
monthmonth_labeldeclarationsquarterly_declarations
2023-08-01Aug 202331941317
2023-09-01Sep 202348352362
2023-10-01Oct 20232262636
2023-11-01Nov 202330851313
2023-12-01Dec 202351552237
2024-01-01Jan 20241634520
2024-02-01Feb 202427371078
2024-03-01Mar 202448932553
2024-04-01Apr 20242801617
2024-05-01May 202436531174
2024-06-01Jun 202449522479
2024-07-01Jul 20242633671
2024-08-01Aug 202433201205
2024-09-01Sep 202449362415
2024-10-01Oct 20242571657
2024-11-01Nov 202431641164
2024-12-01Dec 202462792698
2025-01-01Jan 20251891510
2025-02-01Feb 20252918946
2025-03-01Mar 202548972523
2025-04-01Apr 20253151652
2025-05-01May 202541051176
2025-06-01Jun 202556382640
2025-07-01Jul 20253033655
2025-08-01Aug 202536601140
2025-09-01Sep 202549412372
2025-10-01Oct 20253203674
2025-11-01Nov 202536871059
2025-12-01Dec 202574132745
2026-01-01Jan 20262541502
2026-02-01Feb 20263534897
2026-03-01Mar 202666682836
2026-04-01Apr 20263873622
2026-05-01May 202647341089
2026-06-01Jun 202665822770
2026-07-01Jul 20263818670
Rows × columns
36 × 4
Period covered
to
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 Monthly count of dividend declarations across the market, derived from the stored result.
ColumnTypeRangeNotes
month date 2023-08-01 to 2026-07-01
month_label text 36 distinct values (Apr 2024, Apr 2025, Apr 2026…)
declarations number 1,634 to 7,413
quarterly_declarations number 502 to 2,836

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
    toString(toStartOfMonth(ex_dividend_date))                AS month,
    formatDateTime(toStartOfMonth(ex_dividend_date), '%b %Y') AS month_label,
    count()                                                   AS declarations,
    countIf(frequency = 4)                                    AS quarterly_declarations
FROM
(
    SELECT
        ticker,
        ex_dividend_date,
        any(ifNull(frequency, 0)) AS frequency
    FROM global_markets.stocks_dividends
    WHERE ex_dividend_date >= toStartOfMonth(today() - 1095)
      AND ex_dividend_date <  toStartOfMonth(today())
    GROUP BY ticker, ex_dividend_date
)
GROUP BY month, month_label
ORDER BY month

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 analysisHow Preferred Stock Dividends Work
Days from the ex-dividend date to the pay date, past two years ranking 6×3 Quarterly payers by how many different per-share amounts they paid ranking 5×3 Dividend declarations by stated payment schedule, past three years ranking 5×3 The 10-year Treasury yield, month by month: July 2021 to the latest reading on file series 61×3 Regular dividends: ex-date before the record date, or on it series 43×5 Intel (INTC): month-end price, quarterly dividend, and quoted yield, Jan 2021 to Jun 2024 series 42×5 See all 2,170 queries →