STRASMORE/EXPLORE 2,170 QUERIES 22Y EQUITIES · 12Y OPTIONS

2,170 answered market questions

every one with its exact SQL, its result and the date it was computed · free, no signup

TSLA Implied Volatility: IV Now & Its History
TSLA ATM implied volatility by time to expiration: latest sessionranking · 2026-08-22 · 4×3Preview: 4 ranked values, smallest first. TSLA vs SPY and QQQ: median ATM implied volatility by month, since mid-2022series · 2026-08-22 · 50×4Preview: a 16-point series, ending lower. TSLA at-the-money implied volatility by session: trailing 90 daysseries · 2026-08-22 · 62×2Preview: a 16-point series, ending higher.
Tesla's Bitcoin 10-K: Feb 8, 2021 on the Tape
Was February 8 a big day for TSLA? Its own prior five months as the yardstickscalar · 2026-07-26 · 1×4109 February 8, 2021 across the bitcoin-adjacent names: close-to-close change, ET regular hoursranking · 2026-07-26 · 6×2Preview: 6 ranked values, largest first. The 2022 exit: the July 20 disclosure 8-K on file, and TSLA's next sessionscalar · 2026-07-26 · 1×51 TSLA by half-hour: February 8, 2021 regular sessionseries · 2026-07-26 · 13×4Preview: a 13-point series, ending lower. TSLA options on February 8, 2021 vs the prior 20 sessions: contracts and put/call mixscalar · 2026-07-26 · 1×70.85 TSLA's next 20 sessions: every close indexed to the February 8, 2021 closeseries · 2026-07-26 · 21×3Preview: a 16-point series, ending lower. Tesla's SEC filings dated February 8, 2021: plus the year-end cash the purchase came out ofscalar · 2026-07-26 · 1×51 TSLA on February 8, 2021: the disclosure session, receiptedscalar · 2026-07-26 · 1×11852.61
TSLA ATM implied volatility by time to expiration: latest session

TSLA ATM implied volatility by time to expiration: latest session

most recentas of ranking 4×3read in context →
TSLA ATM implied volatility by time to expiration: latest session — 4 rows by 3 columns, computed from US exchange, SIP and OPRA data.
expiry_bucketatm_iv_pctcontracts
Under 2 weeks42.6160
2-6 weeks42.379
6 weeks - 4 months45.128
Beyond 4 months47.580
the exact SQL behind every number
SELECT multiIf(days_to_expiry <= 14, 'Under 2 weeks', days_to_expiry <= 45, '2-6 weeks',
               days_to_expiry <= 120, '6 weeks - 4 months', 'Beyond 4 months') AS expiry_bucket,
       round(100 * quantileExact(0.5)(implied_volatility), 1) AS atm_iv_pct,
       count() AS contracts
FROM global_markets.options_greeks
WHERE underlying_symbol = 'TSLA'
  AND date = (SELECT max(date) FROM global_markets.options_greeks)
  AND iv_converged AND implied_volatility BETWEEN 0.02 AND 5
  AND abs(strike_price / underlying_close - 1) <= 0.05
GROUP BY expiry_bucket
HAVING count() >= 5
ORDER BY min(days_to_expiry)
$