Put/call volume ratio by underlying: January 1 to July 31, 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-03, from Is a High Put/Call Ratio Bullish?.
| symbol | put_call_ratio | above_one_pct | observations |
|---|---|---|---|
| IWM | 2.73 | 98.6 | 144 |
| SPY | 1.44 | 97.9 | 144 |
| QQQ | 1.31 | 97.2 | 144 |
| TSLA | 0.69 | 2.1 | 144 |
| JPM | 0.63 | 22.2 | 144 |
| META | 0.59 | 3.5 | 144 |
| AAPL | 0.55 | 2.8 | 144 |
| NVDA | 0.55 | 0.7 | 144 |
| MSFT | 0.55 | 16 | 144 |
| GOOGL | 0.53 | 2.8 | 144 |
| AMZN | 0.5 | 3.5 | 144 |
| KO | 0.49 | 7.6 | 144 |
| XOM | 0.38 | 2.8 | 144 |
- Rows × columns
- 13 × 4
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
symbol |
text | 13 distinct values (AAPL, AMZN, GOOGL…) | |
put_call_ratio |
number | 0.38 to 2.73 | ratio or rate |
above_one_pct |
number | 0.7 to 98.6 | percent |
observations |
number | every row is 144 |
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 symbol_days AS (
SELECT underlying_symbol AS symbol,
date AS day,
sumIf(volume, upper(substring(ticker, length(ticker) - 8, 1)) = 'P') AS put_volume,
sumIf(volume, upper(substring(ticker, length(ticker) - 8, 1)) = 'C') AS call_volume
FROM global_markets.options_greeks
WHERE date >= toDate('2026-01-01')
AND date <= toDate('2026-07-31')
AND volume > 0
AND underlying_symbol IN ('SPY', 'QQQ', 'IWM', 'AAPL', 'MSFT', 'NVDA', 'AMZN',
'META', 'TSLA', 'GOOGL', 'JPM', 'KO', 'XOM')
GROUP BY symbol, day
HAVING call_volume > 0
)
SELECT symbol,
round(toFloat64(sum(put_volume)) / toFloat64(sum(call_volume)), 2) AS put_call_ratio,
round(100 * countIf(put_volume > call_volume) / count(), 1) AS above_one_pct,
count() AS observations
FROM symbol_days
GROUP BY symbol
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 analysisIs a High Put/Call Ratio Bullish?
Put/call volume ratio percentiles: single-stock basket vs index ETFs, 2022 to July 2026
ranking 8×3
→
Top-decile put/call readings per month, grouped by how the S&P 500 tracker moved
ranking 4×4
→
S&P 500 tracker moves after each fifth of the equity put/call ratio, 2022 to July 2026
table 5×7
→
The total is a call-volume-weighted blend of the two buckets
ranking 11×4
→
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
→
See all 2,170 queries →