STRASMORE/EXPLORE 2,433 QUERIES

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.

as of ranking 5×4read in context →
Put versus call implied volatility, near the money, 20 to 45 days out — 5 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickerput_ivcall_ivput_minus_call
KO21.118.82.2
MSFT32.532.6-0.1
AAPL25.826.6-0.8
MSTR76.778.5-1.8
COIN69.371.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
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for Put versus call implied volatility, near the money, 20 to 45 days out, derived from the stored result.
ColumnTypeRangeNotes
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
⌘/Ctrl + Enter
More from this analysisWhen Short Options Get Assigned Early
AAPL calls 1 to 5 percent in the money, by days left to expiry ranking 6×4 Latest cash dividend per share, and what it is worth against the stock series 6×4 Time value left in AAPL contracts by depth in the money table 5×5 Friday close to Monday's first minute: absolute overnight move, 2023 to July 2026 ranking 8×4 Absolute move over the final 30 minutes of Friday sessions, 2023 to July 2026 ranking 8×4 Cash behind one contract: 100 shares at each name's close in the last week of July 2026 ranking 8×2 See all 2,433 queries →