STRASMORE/EXPLORE 2,433 QUERIES

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?.

as of ranking 14×4read in context →
Where the volume sat on that AAPL chain: call contracts against put contracts, by strike — 14 rows by 4 columns, computed from US exchange, SIP and OPRA data.
strikecall_volumeput_volumeput_volume_share_pct
$26033637999.5
$26521728599.7
$27014189099.3
$275141127690
$280168116787.4
$285481112170
$2902317265353.4
$295339146712.1
$3003263235741.9
$3053248391.2
$3106597190.3
$315117717112.7
$32020989920.4
$32566100
Rows × columns
14 × 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 Where the volume sat on that AAPL chain: call contracts against put contracts, by strike, derived from the stored result.
ColumnTypeRangeNotes
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
⌘/Ctrl + Enter
More from this analysisCredit Spread vs Debit Spread: Same Trade?
Profit and loss at expiration: the debit structure against the credit structure ranking 8×4 Every $5-wide vertical on one AAPL chain: debit paid against credit taken ranking 6×4 Put-call parity on one AAPL chain: call minus put against stock minus strike table 5×8 Vega across the SPY ladder, indexed to the at-the-money strike, May 2026 ranking 13×3 What a 30-day SPY option cost at each distance from spot, May 2026 averages ranking 13×3 How often SPY moved a given distance over 21 sessions ranking 8×2 See all 2,433 queries →