STRASMORE/EXPLORE 2,170 QUERIES

At the money implied volatility and solver convergence, eight names, June 30, 2026

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-25, from How Implied Volatility Is Calculated.

as of ranking 8×4read in context →
At the money implied volatility and solver convergence, eight names, June 30, 2026 — 8 rows by 4 columns, computed from US exchange, SIP and OPRA data.
symbolatm_iv_pctsolved_pctcontract_count
TSLA47.797.8364
MSFT39.695.5221
AMZN38.796.3163
NVDA38.293.8209
JNJ28.310053
AAPL27.889.6154
KO20.910079
SPY14.498.5739
Rows × columns
8 × 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 At the money implied volatility and solver convergence, eight names, June 30, 2026, derived from the stored result.
ColumnTypeRangeNotes
symbol text 8 distinct values (AAPL, AMZN, JNJ…)
atm_iv_pct number 14.4 to 47.7 percent
solved_pct number 89.6 to 100 percent
contract_count number 53 to 739 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
WITH abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) AS distance_from_spot
SELECT underlying_symbol AS symbol,
       round(100 * avgIf(toFloat64(implied_volatility), iv_converged = 1 AND distance_from_spot < 0.05), 1) AS atm_iv_pct,
       round(100 * countIf(iv_converged = 1) / count(), 1) AS solved_pct,
       count() AS contract_count
FROM global_markets.options_greeks
WHERE date = toDate('2026-06-30')
  AND underlying_symbol IN ('AAPL', 'MSFT', 'NVDA', 'AMZN', 'TSLA', 'SPY', 'KO', 'JNJ')
  AND days_to_expiry BETWEEN 20 AND 45
  AND volume > 0
GROUP BY symbol
HAVING countIf(iv_converged = 1 AND distance_from_spot < 0.05) > 0
ORDER BY atm_iv_pct DESC

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 analysisHow Implied Volatility Is Calculated
Where the Newton step misbehaves: AAPL vega by strike zone, June 30, 2026 ranking 6×3 One solve per contract: AAPL implied volatility by strike zone, June 30, 2026 ranking 6×3 One AAPL contract, re-solved every session into its July 17, 2026 expiry series 29×3 SPY implied volatility by strike distance, 20 to 45 days to expiry (Jan to Jun 2026) ranking 13×4 How far AAPL moves inside a single minute, by New York hour ranking 12×4 Implied volatility beside the movement each stock actually delivered over the prior 30 sessions ranking 11×4 See all 2,170 queries →