STRASMORE/EXPLORE 2,170 QUERIES

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.

as of series 2×4read in context →
Next declared ex dividend dates and the cash at stake per contract — 2 rows by 4 columns, computed from US exchange, SIP and OPRA data.
symbolex_date_labeldividend_per_contract_usddays_to_ex_date
JNJAug 251343
KOSep 155324
Rows × columns
2 × 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 Next declared ex dividend dates and the cash at stake per contract, derived from the stored result.
ColumnTypeRangeNotes
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 →