STRASMORE/EXPLORE 2,170 QUERIES

2026 cash dividends per share at eight widely held 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-07, from How to Roll an Option Position: Up and Out.

as of ranking 8×4read in context →
2026 cash dividends per share at eight widely held payers — 8 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickerlatest_ex_labeldividend_per_sharedividends_paid_ytd
CVXMay 19, 20261.783.56
JNJMay 26, 20261.342.64
PGJul 24, 20261.093.23
XOMMay 15, 20261.032.06
MSFTMay 21, 20260.911.82
VZJul 10, 20260.712.1
KOJun 15, 20260.531.06
AAPLMay 11, 20260.270.53
Rows × columns
8 × 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 2026 cash dividends per share at eight widely held payers, derived from the stored result.
ColumnTypeRangeNotes
ticker text 8 distinct values (AAPL, CVX, JNJ…)
latest_ex_label text 8 distinct values (Jul 10, 2026, Jul 24, 2026, Jun 15, 2026…)
dividend_per_share number 0.27 to 1.78
dividends_paid_ytd number 0.53 to 3.56

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
    ticker,
    formatDateTime(max(ex_dividend_date), '%b %e, %Y')         AS latest_ex_label,
    round(toFloat64(argMax(cash_amount, ex_dividend_date)), 2) AS dividend_per_share,
    round(toFloat64(sum(cash_amount)), 2)                      AS dividends_paid_ytd
FROM
(
    SELECT
        ticker,
        ex_dividend_date,
        max(cash_amount) AS cash_amount
    FROM global_markets.stocks_dividends
    WHERE ticker IN ('AAPL', 'MSFT', 'KO', 'JNJ', 'PG', 'XOM', 'VZ', 'CVX')
      AND ex_dividend_date >= '2026-01-01'
      AND ex_dividend_date <  '2026-08-01'
    GROUP BY ticker, ex_dividend_date
)
GROUP BY ticker
ORDER BY dividend_per_share 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 analysisHow to Roll an Option Position: Up and Out
Moving the strike up costs premium: AAPL calls 30 to 45 days out ranking 6×3 What extra time is worth: at-the-money AAPL call premium by days to expiry ranking 6×3 Time value left in an in-the-money KO call as expiry approaches ranking 5×4 Median implied volatility on 20 to 45 day near-the-money calls, July 2026 ranking 5×3 AAPL call delta by strike distance, 20 to 45 days to expiry, July 2026 ranking 5×3 Median implied volatility on near-the-money AAPL calls, by month series 24×2 See all 2,170 queries →