{"slug":"highest-implied-volatility-stocks","qid":"market_iv","label":"ATM implied volatility across every actively traded underlying, latest session","post_title":"Highest Implied Volatility Stocks Right Now","post_url":"/blog/highest-implied-volatility-stocks#q-market_iv","columns":["underlyings_measured","p25_iv_pct","median_iv_pct","p75_iv_pct","p95_iv_pct"],"rows":[{"underlyings_measured":947,"p25_iv_pct":29.4,"median_iv_pct":44.3,"p75_iv_pct":67.5,"p95_iv_pct":104.6}],"shape":"scalar","sql":"SELECT count() AS underlyings_measured,\n       round(100 * quantileExact(0.25)(iv), 1) AS p25_iv_pct,\n       round(100 * quantileExact(0.5)(iv), 1)  AS median_iv_pct,\n       round(100 * quantileExact(0.75)(iv), 1) AS p75_iv_pct,\n       round(100 * quantileExact(0.95)(iv), 1) AS p95_iv_pct\nFROM (\n    SELECT underlying_symbol, quantileExact(0.5)(implied_volatility) AS iv\n    FROM global_markets.options_greeks\n    WHERE date = (SELECT max(date) FROM global_markets.options_greeks)\n      AND iv_converged AND implied_volatility BETWEEN 0.02 AND 5\n      AND abs(strike_price / underlying_close - 1) <= 0.05\n      AND expiration_date BETWEEN date + 7 AND date + 60\n    GROUP BY underlying_symbol\n    HAVING sum(volume) >= 200\n)","computed_at":"2026-08-25T13:09:30.761959+00:00","elapsed":0.085729896}