Put versus call implied volatility, near the money, 20 to 45 days out
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-09-20, from When Short Options Get Assigned Early.
| ticker | put_iv | call_iv | put_minus_call |
|---|---|---|---|
| KO | 21.1 | 18.8 | 2.2 |
| MSFT | 32.5 | 32.6 | -0.1 |
| AAPL | 25.8 | 26.6 | -0.8 |
| MSTR | 76.7 | 78.5 | -1.8 |
| COIN | 69.3 | 71.4 | -2.1 |
- Rows × columns
- 5 × 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 |
|---|---|---|---|
ticker |
text | 5 distinct values (AAPL, COIN, KO…) | |
put_iv |
number | 21.1 to 76.7 | ratio or rate |
call_iv |
number | 18.8 to 78.5 | ratio or rate |
put_minus_call |
number | -2.1 to 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.
Run it yourself
This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.
SELECT
underlying_symbol AS ticker,
round(100 * avgIf(iv_f, delta_f < 0), 1) AS put_iv,
round(100 * avgIf(iv_f, delta_f > 0), 1) AS call_iv,
round(100 * (avgIf(iv_f, delta_f < 0) - avgIf(iv_f, delta_f > 0)), 1) AS put_minus_call
FROM
(
SELECT
underlying_symbol,
toFloat64(implied_volatility) AS iv_f,
toFloat64(delta) AS delta_f
FROM global_markets.options_greeks
WHERE underlying_symbol IN ('MSTR', 'COIN', 'AAPL', 'MSFT', 'KO')
AND date >= today() - 120
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.05
)
GROUP BY underlying_symbol
HAVING countIf(delta_f < 0) > 0 AND countIf(delta_f > 0) > 0
ORDER BY put_minus_call DESC