STRASMORE/EXPLORE 2,595 QUERIES

One-month expected move priced by the option market

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 Straddle vs Strangle: Break-Evens and Margin.

as of ranking 6×3read in context →
One-month expected move priced by the option market — 6 rows by 3 columns, computed from US exchange, SIP and OPRA data.
symbolimplied_vol_pctexpected_move_pct
NVDA31.19.27
MSFT26.27.79
AAPL25.17.5
KO18.95.63
QQQ185.36
SPY13.23.96
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 One-month expected move priced by the option market, derived from the stored result.
ColumnTypeRangeNotes
symbol text 6 distinct values (AAPL, KO, MSFT…)
implied_vol_pct number 13.2 to 31.1 percent
expected_move_pct number 3.96 to 9.27 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.

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 symbol,
    round(100 * avg(implied_volatility), 1) AS implied_vol_pct,
    round(100 * avg(implied_volatility)
        * sqrt(avg(days_to_expiry) / 365), 2) AS expected_move_pct
FROM global_markets.options_greeks
WHERE date =
    (
        SELECT max(date)
        FROM global_markets.options_greeks
        WHERE underlying_symbol = 'SPY'
          AND date >= today() - 90
          AND iv_converged = 1
          AND volume > 0
    )
  AND underlying_symbol IN ('SPY', 'QQQ', 'AAPL', 'MSFT', 'NVDA', 'KO')
  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
ORDER BY expected_move_pct DESC
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.

More from this analysisStraddle vs Strangle: Break-Evens and Margin
How often SPY moved a given distance over 21 sessions ranking 8×2 → Where the volume sat on that AAPL chain: call contracts against put contracts, by strike ranking 14×4 → SPY implied volatility by strike distance, 20 to 45 days to expiry (Jan to Jun 2026) ranking 13×4 → Vega across the SPY ladder, indexed to the at-the-money strike, May 2026 ranking 13×3 → What a 30-day SPY option cost at each distance from spot, May 2026 averages ranking 13×3 → How far AAPL moves inside a single minute, by New York hour ranking 12×4 → See all 2,595 queries →