{"slug":"spcx-week-2026-07-06-deep-dive","qid":"options_week","label":"Options on the new entity, full week: contracts, put-call, busiest contract","post_title":"SPCX: The Week It Went Underwater","post_url":"/blog/spcx-week-2026-07-06-deep-dive#q-options_week","columns":["contracts_traded_m","week_put_call_ratio","premium_notional_busd","busiest_contract"],"rows":[{"contracts_traded_m":3.14,"week_put_call_ratio":0.8,"premium_notional_busd":1.71,"busiest_contract":"$450 call, expiry 2026-07-17"}],"shape":"scalar","sql":"WITH\n    (\n        SELECT concat('$', toString(round(toFloat64(toUInt32OrZero(substring(ticker, 14, 8))) / 1000, 2)),\n               if(substring(ticker, 13, 1) = 'P', ' put', ' call'),\n               ', expiry 20', substring(ticker, 7, 2), '-', substring(ticker, 9, 2), '-', substring(ticker, 11, 2))\n        FROM global_markets.options_trades\n        WHERE startsWith(ticker, 'O:SPCX') AND length(ticker) = 21\n          AND sip_timestamp >= toDateTime64('2026-07-06 00:00:00', 9) AND sip_timestamp < toDateTime64('2026-07-11 00:00:00', 9)\n        GROUP BY ticker ORDER BY sum(size) DESC LIMIT 1\n    ) AS busiest_name\nSELECT\n    round(sum(size) / 1e6, 2) AS contracts_traded_m,\n    round(toFloat64(sumIf(size, substring(ticker, 13, 1) = 'P')) / toFloat64(sumIf(size, substring(ticker, 13, 1) = 'C')), 2) AS week_put_call_ratio,\n    round(sum(toFloat64(price) * size) * 100 / 1e9, 2) AS premium_notional_busd,\n    busiest_name AS busiest_contract\nFROM global_markets.options_trades\nWHERE startsWith(ticker, 'O:SPCX') AND length(ticker) = 21\n  AND sip_timestamp >= toDateTime64('2026-07-06 00:00:00', 9) AND sip_timestamp < toDateTime64('2026-07-11 00:00:00', 9)","computed_at":"2026-07-26T06:14:25.015826+00:00","elapsed":0.208770263}