STRASMORE/EXPLORE 2,170 QUERIES

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.

as of series 6×4read in context →
Latest cash dividend per share, and what it is worth against the stock — 6 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickerlatest_ex_datedividend_per_sharedividend_pct
PGJul 24, 20261.090.75
XOMAug 17, 20261.030.62
KOSep 15, 20260.530.58
JNJAug 25, 20261.340.5
MSFTAug 20, 20260.910.19
AAPLAug 10, 20260.270.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
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for Latest cash dividend per share, and what it is worth against the stock, derived from the stored result.
ColumnTypeRangeNotes
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 →