SPY implied volatility by strike: OTM puts below spot, OTM calls above, July 15, 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-08-14, from What Is Volatility Skew? The Smile, Measured.
| strike_vs_spot | otm_iv_pct |
|---|---|
| 85% of spot | 27.5 |
| 90% of spot | 22.3 |
| 95% of spot | 18.1 |
| 100% of spot | 13.4 |
| 105% of spot | 10.5 |
| 110% of spot | 12.2 |
- Rows × columns
- 6 × 2
- 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 (100% of spot, 105% of spot, 110% of spot…) | |
otm_iv_pct |
number | 10.5 to 27.5 | percent |
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(toString(round(100 * b)), '% of spot') AS strike_vs_spot,
round(100 * median(implied_volatility), 1) AS otm_iv_pct
FROM (
SELECT implied_volatility, round(strike_price / underlying_close / 0.05) * 0.05 AS b, option_type
FROM global_markets.options_greeks
WHERE underlying_symbol = 'SPY' AND date = toDate('2026-07-15')
AND iv_converged AND implied_volatility BETWEEN 0.02 AND 5
AND strike_price / underlying_close BETWEEN 0.83 AND 1.12
AND expiration_date BETWEEN date + 20 AND date + 45
)
WHERE (b < 1 AND option_type = 'P') OR (b > 1 AND option_type = 'C') OR b = 1
GROUP BY b
HAVING count() >= 10
ORDER BY b
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 analysisWhat Is Volatility Skew? The Smile, Measured
Steepest INVERTED skew: OTM calls pricier than OTM puts, July 15, 2026
ranking 8×4
→
OTM put IV vs OTM call IV across every active underlying, July 15, 2026
scalar 1×4
→
At-the-money implied volatility by stock (2026-07-13)
ranking 7×2
→
SPY put IV rises as strikes fall: the volatility skew (2026-07-13)
ranking 5×2
→
SPY at-the-money IV by time to expiry: the term structure (2026-07-13)
ranking 4×2
→
AVGO at-the-money implied volatility, daily, around the June 2026 report
series 15×3
→
See all 2,170 queries →