STRASMORE/EXPLORE 2,173 QUERIES

Where the exercise-optimal calls concentrated on June 29, 2026

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-07-17, from How Ex-Dividend Dates Affect Options.

as of ranking 10×4read in context →
Where the exercise-optimal calls concentrated on June 29, 2026 — 10 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickerdividenditm_callsexercise_optimal
USB0.526432
DIS0.754719
HST0.721110
APLE0.08107
NLY0.7576
BXSL0.7776
DEI0.1955
MDLZ0.5185
BRSP0.1665
AGNC0.12115
Rows × columns
10 × 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 Where the exercise-optimal calls concentrated on June 29, 2026, derived from the stored result.
ColumnTypeRangeNotes
ticker text 10 distinct values (AGNC, APLE, BRSP…)
dividend number 0.08 to 0.77
itm_calls number 5 to 64
exercise_optimal number 5 to 32

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 divs AS (
    SELECT ticker, max(cash_amount) AS dividend
    FROM global_markets.stocks_dividends
    WHERE ex_dividend_date = toDate('2026-06-30') AND cash_amount > 0
    GROUP BY ticker
)
SELECT g.underlying_symbol AS ticker,
       round(any(d.dividend), 2) AS dividend,
       count() AS itm_calls,
       countIf(g.option_close - (g.underlying_close - g.strike_price) < d.dividend) AS exercise_optimal
FROM global_markets.options_greeks g
INNER JOIN divs d ON g.underlying_symbol = d.ticker
WHERE g.date = toDate('2026-06-29') AND g.option_type = 'C'
  AND g.underlying_close - g.strike_price > 0
  AND g.expiration_date > toDate('2026-06-30')
  AND g.implied_volatility > 0.02 AND g.iv_converged
GROUP BY g.underlying_symbol
HAVING exercise_optimal > 0
ORDER BY exercise_optimal DESC
LIMIT 10

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 Ex-Dividend Dates Affect Options
Day before SPY's ex-date: time value left in deep-in-the-money calls, by days to expiry ranking 3×4 A near-the-money SPY call and put: delta across the June 18 ex-dividend date series 9×3 SPY's quarterly dividends, 2025 through the June 2026 ex-date series 6×2 The early-exercise census: every ITM call on every June 30 ex-dividend payer, tested on June 29 scalar 1×4 Call and put implied volatility at matched AAPL strikes, Sep 18 2026 expiry ranking 15×4 One time cash distributions per calendar year, and their share of all payouts ranking 9×3 See all 2,173 queries →