The same equity ratio, computed with and without ETF options
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?.
| session_date | session_label | equity_ratio_etfs_excluded | equity_ratio_etfs_included |
|---|---|---|---|
| 2026-07-20 | Jul 20 | 0.57 | 1.08 |
| 2026-07-21 | Jul 21 | 0.54 | 0.98 |
| 2026-07-22 | Jul 22 | 0.5 | 0.95 |
| 2026-07-23 | Jul 23 | 0.63 | 1.02 |
| 2026-07-24 | Jul 24 | 0.68 | 1.09 |
| 2026-07-27 | Jul 27 | 0.62 | 1.07 |
| 2026-07-28 | Jul 28 | 0.69 | 0.97 |
| 2026-07-29 | Jul 29 | 0.66 | 1.22 |
| 2026-07-30 | Jul 30 | 0.58 | 0.92 |
| 2026-07-31 | Jul 31 | 0.54 | 1.14 |
| 2026-08-03 | Aug 3 | 0.53 | 1.01 |
| 2026-08-04 | Aug 4 | 0.45 | 0.78 |
| 2026-08-05 | Aug 5 | 0.54 | 0.92 |
| 2026-08-06 | Aug 6 | 0.52 | 0.81 |
| 2026-08-07 | Aug 7 | 0.56 | 0.85 |
| 2026-08-10 | Aug 10 | 0.51 | 0.9 |
| 2026-08-11 | Aug 11 | 0.6 | 0.86 |
| 2026-08-12 | Aug 12 | 0.55 | 0.94 |
| 2026-08-13 | Aug 13 | 0.51 | 0.84 |
| 2026-08-14 | Aug 14 | 0.59 | 0.92 |
| 2026-08-17 | Aug 17 | 0.53 | 0.97 |
| 2026-08-18 | Aug 18 | 0.58 | 1.02 |
| 2026-08-19 | Aug 19 | 0.44 | 0.81 |
- Rows × columns
- 23 × 4
- Period covered
- to
- 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 |
|---|---|---|---|
session_date |
date | 2026-07-20 to 2026-08-19 | |
session_label |
text | 23 distinct values (Aug 10, Aug 11, Aug 12…) | |
equity_ratio_etfs_excluded |
number | 0.44 to 0.69 | ratio or rate |
equity_ratio_etfs_included |
number | 0.78 to 1.22 | 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
toString(date) AS session_date,
formatDateTime(date, '%b %e') AS session_label,
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')), 2) AS equity_ratio_etfs_excluded,
round(sumIf(volume, startsWith(lower(option_type), 'p'))
/ sumIf(volume, startsWith(lower(option_type), 'c')), 2) AS equity_ratio_etfs_included
FROM global_markets.options_greeks
WHERE date >= (SELECT toDate(max(date))
FROM global_markets.options_greeks
WHERE volume > 0) - 30
AND volume > 0
AND underlying_symbol IN ('AAPL', 'MSFT', 'NVDA', 'AMZN', 'TSLA', 'JPM', 'KO', 'JNJ',
'SPY', 'QQQ', 'IWM', 'DIA')
GROUP BY date
HAVING sumIf(volume, startsWith(lower(option_type), 'c') AND underlying_symbol NOT IN ('SPY', 'QQQ', 'IWM', 'DIA')) > 0
ORDER BY date
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
→
Put/call volume ratio by underlying, trailing 60 sessions
table 12×5
→
The total is a call-volume-weighted blend of the two buckets
ranking 11×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
→
See all 2,170 queries →