STRASMORE/EXPLORE 2,170 QUERIES

Put-call ratio by underlying: five of the most active names, June 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-11, from What Is the Put-Call Ratio? A Data Guide.

as of ranking 5×3read in context →
Put-call ratio by underlying: five of the most active names, June 2026 — 5 rows by 3 columns, computed from US exchange, SIP and OPRA data.
underlyingput_call_ratiocontracts_mm
SPY1.16263.2
QQQ1.11165.9
TSLA0.7358
AAPL0.6427
NVDA0.5664.6
Rows × columns
5 × 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 Put-call ratio by underlying: five of the most active names, June 2026, derived from the stored result.
ColumnTypeRangeNotes
underlying text 5 distinct values (AAPL, NVDA, QQQ…)
put_call_ratio number 0.56 to 1.16 ratio or rate
contracts_mm number 27 to 263.2 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(ticker LIKE 'O:SPY2%', 'SPY',
               ticker LIKE 'O:QQQ2%', 'QQQ',
               ticker LIKE 'O:NVDA2%', 'NVDA',
               ticker LIKE 'O:TSLA2%', 'TSLA',
               'AAPL') AS underlying,
       round(sumIf(toFloat64(volume), substring(ticker, length(ticker) - 8, 1) = 'P')
             / sumIf(toFloat64(volume), substring(ticker, length(ticker) - 8, 1) = 'C'), 2) AS put_call_ratio,
       round(sum(toFloat64(volume)) / 1e6, 1) AS contracts_mm
FROM global_markets.options_minute_aggs
WHERE window_start >= '2026-06-01 04:00:00'
  AND window_start < '2026-07-01 04:00:00'
  AND (ticker LIKE 'O:SPY2%' OR ticker LIKE 'O:QQQ2%' OR ticker LIKE 'O:NVDA2%'
       OR ticker LIKE 'O:TSLA2%' OR ticker LIKE 'O:AAPL2%')
GROUP BY underlying
ORDER BY put_call_ratio 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 analysisWhat Is the Put-Call Ratio? A Data Guide
Put-call ratio by days to expiration: every listed US option, June 2026 ranking 5×4 Index-linked vs single-stock options: put-call ratio by population, June 2026 ranking 3×4 Market-wide put-call ratio by day: every listed US option, June 1 through July 10, 2026 series 28×4 A decade of SPY put-call ratios: median, low and high of the daily reading by year table 12×5 The June 2026 put-call range: median, high and low of the daily market-wide ratio scalar 1×5 SPY options median spread by expiration date, near-the-money strikes only ranking 25×4 See all 2,170 queries →