Average call delta by strike versus spot, one week or less to expiration
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.
| strike_vs_spot | avg_delta | contract_count |
|---|---|---|
| 4%+ OTM | 0.012 | 165 |
| 2-4% OTM | 0.043 | 107 |
| 0-2% OTM | 0.21 | 103 |
| 0-2% ITM | 0.804 | 99 |
| 2-4% ITM | 0.952 | 75 |
| 4%+ ITM | 0.98 | 156 |
- Rows × columns
- 6 × 3
- 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 | 6 distinct values (0-2% ITM, 0-2% OTM, 2-4% ITM…) | |
avg_delta |
number | 0.012 to 0.98 | |
contract_count |
number | 75 to 165 | 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
WITH toFloat64(underlying_close) / toFloat64(strike_price) - 1 AS moneyness
SELECT
multiIf(moneyness < -0.04, '4%+ OTM',
moneyness < -0.02, '2-4% OTM',
moneyness < 0.00, '0-2% OTM',
moneyness < 0.02, '0-2% ITM',
moneyness < 0.04, '2-4% ITM',
'4%+ ITM') AS strike_vs_spot,
round(avg(abs(delta)), 3) AS avg_delta,
count() AS contract_count
FROM global_markets.options_greeks
WHERE date = (
SELECT max(date)
FROM global_markets.options_greeks
WHERE underlying_symbol IN ('AAPL', 'MSFT', 'NVDA', 'SPY', 'KO', 'T')
)
AND lower(toString(option_type)) IN ('call', 'c')
AND days_to_expiry BETWEEN 0 AND 7
AND toFloat64(strike_price) > 0
AND toFloat64(underlying_close) > 0
AND abs(delta) > 0
AND abs(moneyness) < 0.20
AND underlying_symbol IN ('AAPL', 'MSFT', 'NVDA', 'SPY', 'KO', 'T')
GROUP BY strike_vs_spot
ORDER BY min(moneyness)
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
→
Near the money put premium as a percent of the cash it locks up
ranking 5×3
→
Next declared ex dividend dates and the cash at stake per contract
series 2×4
→
AAPL 25-session moves since January 2021, by size
ranking 6×3
→
Reg T minimum branches for one uncovered AAPL call, by strike (dollars per share)
ranking 12×4
→
SPY: widest open print to close print gaps on monthly expiration Fridays since 2021
ranking 12×4
→
See all 2,170 queries →