A near-the-money SPY call and put: delta across the June 18 ex-dividend date
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.
| date | call_delta | put_delta |
|---|---|---|
| 2026-06-11 | 0.535 | -0.467 |
| 2026-06-12 | 0.571 | -0.435 |
| 2026-06-15 | 0.703 | -0.306 |
| 2026-06-16 | 0.681 | -0.343 |
| 2026-06-17 | 0.634 | -0.41 |
| 2026-06-18 | 0.619 | -0.372 |
| 2026-06-22 | 0.578 | -0.413 |
| 2026-06-23 | 0.467 | -0.533 |
| 2026-06-24 | 0.494 | -0.506 |
- Rows × columns
- 9 × 3
- 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 |
|---|---|---|---|
date |
date | 2026-06-11 to 2026-06-24 | |
call_delta |
number | 0.467 to 0.703 | |
put_delta |
number | -0.533 to -0.306 |
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 date,
round(anyIf(delta, position(ticker, 'C00740') > 0), 3) AS call_delta,
round(anyIf(delta, position(ticker, 'P00740') > 0), 3) AS put_delta
FROM global_markets.options_greeks
WHERE ticker IN ('O:SPY260717C00740000', 'O:SPY260717P00740000')
AND date BETWEEN '2026-06-11' AND '2026-06-24'
AND implied_volatility > 0.02
GROUP BY date
ORDER BY date
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
SPY's quarterly dividends, 2025 through the June 2026 ex-date
series 6×2
→
Where the exercise-optimal calls concentrated on June 29, 2026
ranking 10×4
→
Day before SPY's ex-date: time value left in deep-in-the-money calls, by days to expiry
ranking 3×4
→
The early-exercise census: every ITM call on every June 30 ex-dividend payer, tested on June 29
scalar 1×4
→
AAPL's last eight dividends: all four dates plus cash per share
series 8×5
→
AAPL's last eight ex-dividend mornings: adjusted reference vs. the actual open
series 8×6
→
See all 2,173 queries →