AAPL call and put delta across the strike ladder, 20 to 45 days to expiry
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-06, from Portfolio Delta and Beta Weighting Explained.
| strike_vs_spot | call_delta | put_delta | contract_count |
|---|---|---|---|
| -12% | 0.924 | -0.084 | 4 |
| -10% | 0.855 | -0.109 | 5 |
| -8% | 0.914 | -0.144 | 4 |
| -6% | 0.815 | -0.187 | 6 |
| -4% | 0.718 | -0.28 | 12 |
| -2% | 0.602 | -0.398 | 6 |
| 0% | 0.515 | -0.485 | 6 |
| +2% | 0.429 | -0.57 | 6 |
| +4% | 0.343 | -0.654 | 6 |
| +6% | 0.267 | -0.754 | 6 |
| +8% | 0.171 | -0.788 | 10 |
| +10% | 0.106 | -0.834 | 4 |
- Rows × columns
- 12 × 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 |
|---|---|---|---|
strike_vs_spot |
text | 12 distinct values (+10%, +2%, +4%…) | |
call_delta |
number | 0.106 to 0.924 | |
put_delta |
number | -0.834 to -0.084 | |
contract_count |
number | 4 to 12 | count |
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
concat(if(bucket_pct > 0, '+', ''), toString(bucket_pct), '%') AS strike_vs_spot,
round(avgIf(contract_delta, contract_delta > 0), 3) AS call_delta,
round(avgIf(contract_delta, contract_delta < 0), 3) AS put_delta,
count() AS contract_count
FROM
(
SELECT
toInt32(round((toFloat64(strike_price) / toFloat64(underlying_close) - 1) * 50)) * 2 AS bucket_pct,
toFloat64(delta) AS contract_delta
FROM global_markets.options_greeks
WHERE underlying_symbol = 'AAPL'
AND date >= toDate('2026-06-30')
AND date < toDate('2026-07-01')
AND iv_converged = 1
AND volume > 0
AND days_to_expiry BETWEEN 20 AND 45
AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) <= 0.12
)
GROUP BY bucket_pct
HAVING countIf(contract_delta > 0) > 0 AND countIf(contract_delta < 0) > 0
ORDER BY bucket_pct
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 analysisPortfolio Delta and Beta Weighting Explained
Beta, price ratio, and SPY-share equivalent per share held
ranking 7×4
→
The same two betas, measured over six different lookback windows
ranking 6×3
→
A three-leg book, raw delta against beta weighted delta
table 3×6
→
Average call and put delta by strike distance from spot (SPY, 25 to 35 days to expiry, June 2026)
ranking 11×3
→
Shares a 1% move forces per 100 at-the-money SPY contracts, by time left (June 2026)
ranking 5×2
→
Total daily movement versus net movement, June 2026
ranking 4×4
→
See all 2,170 queries →