Put and call volume for eight household names, July 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-06, from How the Put/Call Ratio Is Calculated.
| symbol | put_volume | call_volume | put_call_ratio |
|---|---|---|---|
| IWM | 15140237 | 4861500 | 3.11 |
| SPY | 49277942 | 36027754 | 1.37 |
| QQQ | 27902709 | 22892546 | 1.22 |
| TSLA | 12352306 | 17435765 | 0.71 |
| AAPL | 7887731 | 11572722 | 0.68 |
| NVDA | 15004386 | 29804863 | 0.5 |
| KO | 411878 | 847723 | 0.49 |
| MSFT | 2900575 | 7720101 | 0.38 |
- Rows × columns
- 8 × 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 | 8 distinct values (AAPL, IWM, KO…) | |
put_volume |
number | 411,878 to 49,277,942 | count |
call_volume |
number | 847,723 to 36,027,754 | count |
put_call_ratio |
number | 0.38 to 3.11 | ratio or rate |
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,
sumIf(volume, right_letter = 'P') AS put_volume,
sumIf(volume, right_letter = 'C') AS call_volume,
round(toFloat64(sumIf(volume, right_letter = 'P'))
/ toFloat64(sumIf(volume, right_letter = 'C')), 2) AS put_call_ratio
FROM
(
SELECT
underlying_symbol,
volume,
substring(ticker, length(ticker) - 8, 1) AS right_letter
FROM global_markets.options_greeks
WHERE date >= '2026-07-01'
AND date < '2026-08-01'
AND underlying_symbol IN ('SPY', 'QQQ', 'IWM', 'AAPL', 'MSFT', 'NVDA', 'TSLA', 'KO')
AND volume > 0
)
GROUP BY symbol
HAVING call_volume > 0 AND put_volume > 0
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 analysisHow the Put/Call Ratio Is Calculated
Where the daily ratio actually sits, twelve months of sessions
ranking 3×4
→
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
→
Monthly median put/call ratio: broad market ETFs against single stocks
series 12×4
→
The total is a call-volume-weighted blend of the two buckets
ranking 11×4
→
What the session's contracts were made of: options volume by days to expiry
ranking 6×4
→
See all 2,170 queries →