STRASMORE/EXPLORE 2,170 QUERIES

Put/call volume ratio by underlying, trailing 60 sessions

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-22, from Equity vs Index Put/Call Ratio: What's High?.

as of table 12×5read in context →
Put/call volume ratio by underlying, trailing 60 sessions — 12 rows by 5 columns, computed from US exchange, SIP and OPRA data.
symbolbucketput_call_ratiocall_volume_millionsput_volume_millions
MSFTsingle stock0.4214.56.1
AMZNsingle stock0.4617.58.1
KOsingle stock0.481.40.7
NVDAsingle stock0.5354.429
AAPLsingle stock0.5922.613.2
JNJsingle stock0.590.70.4
TSLAsingle stock0.683322.4
JPMsingle stock0.691.30.9
DIAbroad-market ETF1.041.11.1
QQQbroad-market ETF1.1843.251.1
SPYbroad-market ETF1.3469.192.3
IWMbroad-market ETF2.879.326.7
Rows × columns
12 × 5
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 volume ratio by underlying, trailing 60 sessions, derived from the stored result.
ColumnTypeRangeNotes
symbol text 12 distinct values (AAPL, AMZN, DIA…)
bucket text 2 distinct values (broad-market ETF, single stock)
put_call_ratio number 0.42 to 2.87 ratio or rate
call_volume_millions number 0.7 to 69.1 count
put_volume_millions number 0.4 to 92.3 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
    underlying_symbol                                                    AS symbol,
    if(underlying_symbol IN ('SPY', 'QQQ', 'IWM', 'DIA'),
       'broad-market ETF',
       'single stock')                                                   AS bucket,
    round(sumIf(volume, startsWith(lower(option_type), 'p'))
          / sumIf(volume, startsWith(lower(option_type), 'c')), 2)       AS put_call_ratio,
    round(sumIf(volume, startsWith(lower(option_type), 'c')) / 1e6, 1)   AS call_volume_millions,
    round(sumIf(volume, startsWith(lower(option_type), 'p')) / 1e6, 1)   AS put_volume_millions
FROM global_markets.options_greeks
WHERE date >= (SELECT toDate(max(date))
               FROM global_markets.options_greeks
               WHERE volume > 0) - 60
  AND volume > 0
  AND underlying_symbol IN ('AAPL', 'MSFT', 'NVDA', 'AMZN', 'TSLA', 'JPM', 'KO', 'JNJ',
                            'SPY', 'QQQ', 'IWM', 'DIA')
GROUP BY symbol
HAVING sumIf(volume, startsWith(lower(option_type), 'c')) > 0
ORDER BY put_call_ratio ASC

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 analysisEquity vs Index Put/Call Ratio: What's High?
Single-stock bucket vs ETF bucket, session by session series 33×6 The same equity ratio, computed with and without ETF options series 23×4 The total is a call-volume-weighted blend of the two buckets ranking 11×4 S&P 500 tracker moves after each fifth of the equity put/call ratio, 2022 to July 2026 table 5×7 Daily single stock put/call ratio against its 21 session average series 84×4 Daily put/call volume ratio, SPY against AAPL, July 2026 series 22×4 See all 2,170 queries →