STRASMORE/EXPLORE 2,170 QUERIES

Recurring cash dividends by declared schedule: every payer on file, July 2025 through June 2026

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-07-31, from Monthly Dividend Stocks Explained.

as of table 5×5read in context →
Recurring cash dividends by declared schedule: every payer on file, July 2025 through June 2026 — 5 rows by 5 columns, computed from US exchange, SIP and OPRA data.
scheduletickerspaymentspayments_per_tickershare_of_payers_pct
Quarterly4925174613.538.9
Twice a year318152411.625.1
Once a year23672424118.7
Monthly19942032010.215.7
Other schedule199665533.41.6
Rows × columns
5 × 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 Recurring cash dividends by declared schedule: every payer on file, July 2025 through June 2026, derived from the stored result.
ColumnTypeRangeNotes
schedule text 5 distinct values (Monthly, Once a year, Other schedule…)
tickers number 199 to 4,925
payments number 2,424 to 20,320
payments_per_ticker number 1 to 33.4
share_of_payers_pct number 1.6 to 38.9 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
SELECT multiIf(freq = 4, 'Quarterly',
               freq = 2, 'Twice a year',
               freq = 1, 'Once a year',
               freq = 12, 'Monthly',
               'Other schedule') AS schedule,
       uniqExact(ticker) AS tickers,
       count() AS payments,
       round(count() / uniqExact(ticker), 1) AS payments_per_ticker,
       round(100 * uniqExact(ticker) / (SELECT uniqExact(ticker)
                                        FROM global_markets.stocks_dividends
                                        WHERE ex_dividend_date >= '2025-07-01'
                                          AND ex_dividend_date <= '2026-06-30'
                                          AND cash_amount > 0
                                          AND distribution_type = 'recurring'), 1) AS share_of_payers_pct
FROM (
    SELECT ticker,
           ex_dividend_date,
           argMax(frequency, ex_dividend_date) OVER (PARTITION BY ticker) AS freq
    FROM global_markets.stocks_dividends
    WHERE ex_dividend_date >= '2025-07-01'
      AND ex_dividend_date <= '2026-06-30'
      AND cash_amount > 0
      AND distribution_type = 'recurring'
)
GROUP BY schedule
ORDER BY tickers 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 analysisMonthly Dividend Stocks Explained
Liquid monthly payers grouped by the change in their monthly rate over three years, with each group's current yield table 4×5 Share of a full year's dividend cash arriving in each month: one monthly payer and one quarterly payer, 2025 pay dates series 12×4 Trailing yield by payment schedule: liquid US-listed payers, twelve months of cash through June 2026 ranking 4×4 Monthly dividend stocks - filing companies paying every month, ranked by daily traded value table 29×6 Realty Income's declared monthly rate by calendar year, the raise over the prior year, and the steps up inside each year table 12×5 Monthly payers yielding above 12% - the price move and the payment move behind the number table 11×5 See all 2,170 queries →