STRASMORE/EXPLORE 2,170 QUERIES

Who goes ex-dividend in the next 14 days: names, cadence and implied yield by size band

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-25, from Upcoming Ex-Dividend Dates: Stocks This Week.

as of table 4×5read in context →
Who goes ex-dividend in the next 14 days: names, cadence and implied yield by size band — 4 rows by 5 columns, computed from US exchange, SIP and OPRA data.
size_bandnames_going_exmedian_indicated_yield_pctmonthly_payersquarterly_payers
1 Mega cap ($100B+)211.83021
2 Large cap ($10-100B)911.4287
3 Mid cap ($2-10B)892.04584
4 Small cap (under $2B)842.89974
Rows × columns
4 × 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 Who goes ex-dividend in the next 14 days: names, cadence and implied yield by size band, derived from the stored result.
ColumnTypeRangeNotes
size_band text 4 distinct values
names_going_ex number 21 to 91
median_indicated_yield_pct number 1.4 to 2.89 percent
monthly_payers number 0 to 9
quarterly_payers number 21 to 87

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 latest AS (
    SELECT ticker, argMax(market_cap, date) AS mcap, argMax(price, date) AS px
    FROM global_markets.stocks_ratios
    WHERE date >= today() - 10
    GROUP BY ticker
),
names AS (
    SELECT d.ticker AS ticker,
           multiIf(any(l.mcap) >= 1e11, '1 Mega cap ($100B+)',
                   any(l.mcap) >= 1e10, '2 Large cap ($10-100B)',
                   any(l.mcap) >= 2e9,  '3 Mid cap ($2-10B)',
                                        '4 Small cap (under $2B)') AS size_band,
           max(d.cash_amount) AS amt,
           max(d.frequency) AS freq,
           any(l.px) AS px
    FROM global_markets.stocks_dividends d
    JOIN latest l ON d.ticker = l.ticker
    WHERE d.ex_dividend_date > today()
      AND d.ex_dividend_date <= today() + 14
      AND d.cash_amount > 0
      AND d.distribution_type = 'recurring'
      AND d.frequency > 0
      AND l.px > 0
      AND l.mcap > 0
    GROUP BY d.ticker
)
SELECT size_band,
       count() AS names_going_ex,
       round(quantileDeterministic(0.5)(100 * amt * freq / px, cityHash64(ticker)), 2) AS median_indicated_yield_pct,
       countIf(freq = 12) AS monthly_payers,
       countIf(freq = 4) AS quarterly_payers
FROM names
GROUP BY size_band
ORDER BY size_band

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 analysisUpcoming Ex-Dividend Dates: Stocks This Week
Every mega-cap ex-dividend event of the past six months: price path from the pre-ex close table 5×6 Thirteen big dividend and income funds: last ex-date, cadence, and the implied next ex-date series 13×8 Ex-dividend dates by calendar month: three-year average, quarterly vs monthly payers series 12×4 Largest companies going ex-dividend in the next 14 days: amount, pay date, indicated yield series 12×8 Names going ex-dividend, day by day: the next seven days of declared records series 5×5 Three household payers at their last ex-date: prior close, ex-morning open, and the payment for scale series 3×8 See all 2,170 queries →