Where the volume sat on that AAPL chain: call contracts against put contracts, by strike
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-07, from Credit Spread vs Debit Spread: Same Trade?.
| strike | call_volume | put_volume | put_volume_share_pct |
|---|---|---|---|
| $260 | 33 | 6379 | 99.5 |
| $265 | 21 | 7285 | 99.7 |
| $270 | 14 | 1890 | 99.3 |
| $275 | 141 | 1276 | 90 |
| $280 | 168 | 1167 | 87.4 |
| $285 | 481 | 1121 | 70 |
| $290 | 2317 | 2653 | 53.4 |
| $295 | 3391 | 467 | 12.1 |
| $300 | 3263 | 2357 | 41.9 |
| $305 | 3248 | 39 | 1.2 |
| $310 | 6597 | 19 | 0.3 |
| $315 | 1177 | 171 | 12.7 |
| $320 | 20989 | 92 | 0.4 |
| $325 | 661 | 0 | 0 |
- Rows × columns
- 14 × 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 |
|---|---|---|---|
strike |
text | 14 distinct values ($260, $265, $270…) | |
call_volume |
number | 14 to 20,989 | count |
put_volume |
number | 0 to 7,285 | count |
put_volume_share_pct |
number | 0 to 99.7 | percent |
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
concat('$', toString(toFloat64(strike_price))) AS strike,
sumIf(volume, lower(option_type) IN ('call', 'c')) AS call_volume,
sumIf(volume, lower(option_type) IN ('put', 'p')) AS put_volume,
round(100 * sumIf(volume, lower(option_type) IN ('put', 'p')) / sum(volume), 1) AS put_volume_share_pct
FROM global_markets.options_greeks
WHERE underlying_symbol = 'AAPL'
AND date = '2026-06-12'
AND expiration_date = '2026-07-17'
AND volume > 0
AND toFloat64(strike_price) = round(toFloat64(strike_price) / 5) * 5
AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.12
GROUP BY strike_price
ORDER BY strike_price