STRASMORE/EXPLORE 2,170 QUERIES

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.

as of ranking 8×4read in context →
Put and call volume for eight household names, July 2026 — 8 rows by 4 columns, computed from US exchange, SIP and OPRA data.
symbolput_volumecall_volumeput_call_ratio
IWM1514023748615003.11
SPY49277942360277541.37
QQQ27902709228925461.22
TSLA12352306174357650.71
AAPL7887731115727220.68
NVDA15004386298048630.5
KO4118788477230.49
MSFT290057577201010.38
Rows × columns
8 × 4
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 and call volume for eight household names, July 2026, derived from the stored result.
ColumnTypeRangeNotes
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 →