The total is a call-volume-weighted blend of the two buckets
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?.
| index_share_of_call_volume | equity_ratio | index_ratio | blended_total_ratio |
|---|---|---|---|
| 0% | 0.556 | 1.396 | 0.556 |
| 10% | 0.556 | 1.396 | 0.64 |
| 20% | 0.556 | 1.396 | 0.724 |
| 30% | 0.556 | 1.396 | 0.808 |
| 40% | 0.556 | 1.396 | 0.892 |
| 50% | 0.556 | 1.396 | 0.976 |
| 60% | 0.556 | 1.396 | 1.06 |
| 70% | 0.556 | 1.396 | 1.144 |
| 80% | 0.556 | 1.396 | 1.228 |
| 90% | 0.556 | 1.396 | 1.312 |
| 100% | 0.556 | 1.396 | 1.396 |
- Rows × columns
- 11 × 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 |
|---|---|---|---|
index_share_of_call_volume |
text | 11 distinct values (0%, 10%, 100%…) | |
equity_ratio |
number | every row is 0.556 | ratio or rate |
index_ratio |
number | every row is 1.396 | ratio or rate |
blended_total_ratio |
number | 0.556 to 1.396 | 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
WITH components AS
(
SELECT
round(sumIf(volume, startsWith(lower(option_type), 'p') AND underlying_symbol NOT IN ('SPY', 'QQQ', 'IWM', 'DIA'))
/ sumIf(volume, startsWith(lower(option_type), 'c') AND underlying_symbol NOT IN ('SPY', 'QQQ', 'IWM', 'DIA')), 3) AS equity_ratio,
round(sumIf(volume, startsWith(lower(option_type), 'p') AND underlying_symbol IN ('SPY', 'QQQ', 'IWM', 'DIA'))
/ sumIf(volume, startsWith(lower(option_type), 'c') AND underlying_symbol IN ('SPY', 'QQQ', 'IWM', 'DIA')), 3) AS index_ratio
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')
HAVING sumIf(volume, startsWith(lower(option_type), 'c') AND underlying_symbol IN ('SPY', 'QQQ', 'IWM', 'DIA')) > 0
AND sumIf(volume, startsWith(lower(option_type), 'c') AND underlying_symbol NOT IN ('SPY', 'QQQ', 'IWM', 'DIA')) > 0
)
SELECT
concat(toString(step * 10), '%') AS index_share_of_call_volume,
equity_ratio,
index_ratio,
round(equity_ratio + (index_ratio - equity_ratio) * (step / 10), 3) AS blended_total_ratio
FROM
(
SELECT
equity_ratio,
index_ratio,
arrayJoin(range(11)) AS step
FROM components
)
ORDER BY step
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
→
Put/call volume ratio by underlying, trailing 60 sessions
table 12×5
→
Put/call volume ratio by underlying: January 1 to July 31, 2026
ranking 13×4
→
Put and call volume for eight household names, July 2026
ranking 8×4
→
Put/call volume ratio percentiles: single-stock basket vs index ETFs, 2022 to July 2026
ranking 8×3
→
See all 2,170 queries →