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.
Run it yourself
This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.
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