Latest cash dividend per share, and what it is worth against the stock
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 When Short Options Get Assigned Early.
| ticker | latest_ex_date | dividend_per_share | dividend_pct |
|---|---|---|---|
| PG | Jul 24, 2026 | 1.09 | 0.75 |
| XOM | Aug 17, 2026 | 1.03 | 0.62 |
| KO | Sep 15, 2026 | 0.53 | 0.58 |
| JNJ | Aug 25, 2026 | 1.34 | 0.5 |
| MSFT | Aug 20, 2026 | 0.91 | 0.19 |
| AAPL | Aug 10, 2026 | 0.27 | 0.09 |
- Rows × columns
- 6 × 4
- Period covered
- to
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
ticker |
text | 6 distinct values (AAPL, JNJ, KO…) | |
latest_ex_date |
date | Aug 10, 20 to Sep 15, 20 | |
dividend_per_share |
number | 0.27 to 1.34 | |
dividend_pct |
number | 0.09 to 0.75 | 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
WITH last_price AS
(
SELECT
ticker,
argMax(toFloat64(close), window_start) AS px
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('KO', 'JNJ', 'PG', 'XOM', 'MSFT', 'AAPL')
AND window_start >= today() - 14
GROUP BY ticker
)
SELECT
d.ticker AS ticker,
formatDateTime(max(d.ex_dividend_date), '%b %e, %Y') AS latest_ex_date,
round(argMax(toFloat64(d.cash_amount), d.ex_dividend_date), 2) AS dividend_per_share,
round(100 * argMax(toFloat64(d.cash_amount), d.ex_dividend_date) / any(p.px), 2) AS dividend_pct
FROM global_markets.stocks_dividends AS d
INNER JOIN last_price AS p ON p.ticker = d.ticker
WHERE d.ticker IN ('KO', 'JNJ', 'PG', 'XOM', 'MSFT', 'AAPL')
AND d.ex_dividend_date >= today() - 400
AND d.ex_dividend_date <= today() + 120
GROUP BY d.ticker
ORDER BY dividend_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 analysisWhen Short Options Get Assigned Early
AAPL calls 1 to 5 percent in the money, by days left to expiry
ranking 6×4
→
Time value left in AAPL contracts by depth in the money
table 5×5
→
Put versus call implied volatility, near the money, 20 to 45 days out
ranking 5×4
→
NVDA on July 17, 2026: the close and the post close window
table 30×3
→
Friday close to Monday's first minute: absolute overnight move, 2023 to July 2026
ranking 8×4
→
Absolute move over the final 30 minutes of Friday sessions, 2023 to July 2026
ranking 8×4
→
See all 2,170 queries →