STRASMORE/EXPLORE 2,170 QUERIES

Trailing 12-month dividend yield across ten household payers

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 Portfolio Dividend Yield: Weighted Average.

as of ranking 10×4read in context →
Trailing 12-month dividend yield across ten household payers — 10 rows by 4 columns, computed from US exchange, SIP and OPRA data.
symbolttm_dividend_usdyield_pctpriced_through
VZ2.85.7Aug 21, 2026
PEP5.754.03Aug 21, 2026
CVX7.053.43Aug 21, 2026
PG4.293Aug 21, 2026
HD9.262.76Aug 21, 2026
XOM4.122.49Aug 21, 2026
KO2.082.3Aug 21, 2026
JNJ5.241.95Aug 21, 2026
MSFT3.640.76Aug 21, 2026
AAPL1.060.34Aug 21, 2026
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 Trailing 12-month dividend yield across ten household payers, derived from the stored result.
ColumnTypeRangeNotes
symbol text 10 distinct values (AAPL, CVX, HD…)
ttm_dividend_usd number 1.06 to 9.26 US dollars
yield_pct number 0.34 to 5.7 percent
priced_through text 1 distinct value (Aug 21, 2026)

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
    last_px AS
    (
        SELECT
            ticker,
            toFloat64(argMax(close, date))         AS px,
            formatDateTime(max(date), '%b %e, %Y') AS priced_through
        FROM global_markets.stocks_daily_aggs
        WHERE ticker IN ('AAPL', 'MSFT', 'HD', 'KO', 'PG', 'PEP', 'JNJ', 'XOM', 'CVX', 'VZ')
          AND date >= today() - 30
        GROUP BY ticker
    ),
    ttm_dps AS
    (
        SELECT
            ticker,
            sum(amount) AS dps
        FROM
        (
            SELECT
                ticker,
                id,
                toFloat64(any(cash_amount)) AS amount
            FROM global_markets.stocks_dividends
            WHERE ticker IN ('AAPL', 'MSFT', 'HD', 'KO', 'PG', 'PEP', 'JNJ', 'XOM', 'CVX', 'VZ')
              AND ex_dividend_date >  today() - 365
              AND ex_dividend_date <= today()
            GROUP BY ticker, id
        )
        GROUP BY ticker
    )
SELECT
    p.ticker                     AS symbol,
    round(d.dps, 2)              AS ttm_dividend_usd,
    round(100 * d.dps / p.px, 2) AS yield_pct,
    p.priced_through             AS priced_through
FROM last_px AS p
INNER JOIN ttm_dps AS d ON d.ticker = p.ticker
ORDER BY yield_pct 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 analysisPortfolio Dividend Yield: Weighted Average
A five-name portfolio: share of value against share of income ranking 5×4 Two averages of the same five holdings ranking 2×2 Dividend income from the five-name portfolio, by month series 12×3 S&P 500 tracker distributions per share, by calendar year (2015-2025) ranking 11×3 Conagra (CAG): price, quarterly dividend, and yield, month-end 2023-07 to 2026-06 series 36×5 Capital needed for $12,000 a year of distributions, by fund yield table 10×5 See all 2,170 queries →