STRASMORE/EXPLORE 2,170 QUERIES

SPY near-the-money implied volatility by distance 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 Why VIX Options Don't Track the VIX.

as of ranking 6×3read in context →
SPY near-the-money implied volatility by distance to expiration — 6 rows by 3 columns, computed from US exchange, SIP and OPRA data.
dte_bandiv_pctcontract_count
up to 1 week18.0642251
1 to 3 weeks14.5147164
3 to 6 weeks14.9737078
6 weeks to 3 months15.4625859
3 to 6 months16.6717769
over 6 months18.6817210
Rows × columns
6 × 3
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 SPY near-the-money implied volatility by distance to expiration, derived from the stored result.
ColumnTypeRangeNotes
dte_band text 6 distinct values
iv_pct number 14.51 to 18.68 percent
contract_count number 17,210 to 47,164 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
SELECT
    multiIf(days_to_expiry <=   7, 'up to 1 week',
            days_to_expiry <=  21, '1 to 3 weeks',
            days_to_expiry <=  45, '3 to 6 weeks',
            days_to_expiry <=  90, '6 weeks to 3 months',
            days_to_expiry <= 180, '3 to 6 months',
                                   'over 6 months')          AS dte_band,
    round(avg(implied_volatility) * 100, 2)                   AS iv_pct,
    count()                                                   AS contract_count
FROM global_markets.options_greeks
WHERE underlying_symbol = 'SPY'
  AND iv_converged = 1
  AND volume > 0
  AND days_to_expiry BETWEEN 1 AND 730
  AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.05
  AND date >= today() - 120
GROUP BY dte_band
ORDER BY min(days_to_expiry)

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 analysisWhy VIX Options Don't Track the VIX
The near-to-far implied volatility gap across liquid names ranking 6×4 How far the long tenor travels on days the front end jumps ranking 5×4 Near-dated versus long-dated SPY implied volatility, session by session series 81×3 SPY near-the-money implied volatility by days to expiry ranking 8×2 SPY absolute daily move, median and 90th percentile by year ranking 8×4 Median daily percent change: VXX against SPY, by calendar year ranking 7×4 See all 2,170 queries →