OTM put IV vs OTM call IV across every active underlying, 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.
underlyings
348
puts richer
245
pct puts richer
70.4
median skew points
2.2
- Rows × columns
- 1 × 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 |
|---|---|---|---|
underlyings |
number | every row is 348 | |
puts_richer |
number | every row is 245 | |
pct_puts_richer |
number | every row is 70.4 | percent |
median_skew_points |
number | every row is 2.2 |
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 count() AS underlyings,
countIf(put_iv > call_iv) AS puts_richer,
round(100.0 * countIf(put_iv > call_iv) / count(), 1) AS pct_puts_richer,
round(100 * quantileExact(0.5)(put_iv - call_iv), 1) AS median_skew_points
FROM (
SELECT underlying_symbol,
medianIf(implied_volatility, option_type = 'P' AND strike_price / underlying_close BETWEEN 0.85 AND 0.95) AS put_iv,
medianIf(implied_volatility, option_type = 'C' AND strike_price / underlying_close BETWEEN 1.05 AND 1.15) AS call_iv
FROM global_markets.options_greeks
WHERE date = toDate('2026-07-15') AND iv_converged AND implied_volatility BETWEEN 0.02 AND 5
AND expiration_date BETWEEN date + 20 AND date + 60
GROUP BY underlying_symbol
HAVING countIf(option_type = 'P' AND strike_price / underlying_close BETWEEN 0.85 AND 0.95) >= 5
AND countIf(option_type = 'C' AND strike_price / underlying_close BETWEEN 1.05 AND 1.15) >= 5
AND sum(volume) >= 500
)
WHERE put_iv > 0 AND call_iv > 0
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
→
SPY implied volatility by strike: OTM puts below spot, OTM calls above, July 15, 2026
ranking 6×2
→
The filing receipt: Broadcom's 8-K, first week of June 2026
scalar 1×2
→
ATM implied volatility across every actively traded underlying, July 15, 2026
scalar 1×5
→
AVGO at-the-money implied volatility, daily, around the June 2026 report
series 15×3
→
SPY at-the-money implied volatility, month by month (Jul 2025 – Jul 2026)
series 13×2
→
See all 2,170 queries →