Next declared ex dividend dates and the cash at stake per contract
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 Trading Options Inside an IRA: How It Works.
| symbol | ex_date_label | dividend_per_contract_usd | days_to_ex_date |
|---|---|---|---|
| JNJ | Aug 25 | 134 | 3 |
| KO | Sep 15 | 53 | 24 |
- Rows × columns
- 2 × 4
- 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 |
|---|---|---|---|
symbol |
text | 2 distinct values (JNJ, KO) | |
ex_date_label |
text | 2 distinct values (Aug 25, Sep 15) | |
dividend_per_contract_usd |
number | 53 to 134 | US dollars |
days_to_ex_date |
number | 3 to 24 |
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 AS symbol,
formatDateTime(min(ex_dividend_date), '%b %e') AS ex_date_label,
round(toFloat64(argMin(cash_amount, ex_dividend_date)) * 100, 2) AS dividend_per_contract_usd,
dateDiff('day', today(), min(ex_dividend_date)) AS days_to_ex_date
FROM global_markets.stocks_dividends
WHERE ex_dividend_date >= today()
AND ex_dividend_date <= today() + 200
AND ticker IN ('AAPL', 'MSFT', 'KO', 'T', 'JNJ', 'PG', 'XOM', 'CVX')
GROUP BY ticker
ORDER BY dividend_per_contract_usd 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 analysisTrading Options Inside an IRA: How It Works
What one fully collateralized contract ties up, by underlying
ranking 6×4
→
Average call delta by strike versus spot, one week or less to expiration
ranking 6×3
→
Near the money put premium as a percent of the cash it locks up
ranking 5×3
→
AAPL 25-session moves since January 2021, by size
ranking 6×3
→
One fixed short AAPL call strike: requirement as a percent of the share price, April to June 2026
series 62×4
→
One full 61 day wash sale window on the tape: AAPL, Dec 1 2025 through Jan 30 2026
series 42×3
→
See all 2,170 queries →