The Best and Worst Thousand Dollars of June 2026
The ride, session by session: daily turnover, last price, and the thousand-dollar position's markseries ·
2026-07-26 · 10×6
The loss pile by root: contracts down 90%+ from first print, share of the pile, and each root's ten-baggerstable ·
2026-07-26 · 6×6
The most expensive ticket to zero: the priciest contract that ended at two cents or lessscalar ·
2026-07-26 · 1×510
The entry receipt: the winner's first print, its second, and every penny print of its June life (one row)scalar ·
2026-07-26 · 1×110.01
The full distribution: for every jackpot, thousands of near-total losses (put/call split included)scalar ·
2026-07-26 · 1×1030,951
The five biggest first-print-to-last-print multiples of June, priced from both chairs (six liquid roots, 50+ trades)table ·
2026-07-26 · 5×9
Calibration: every month of 2026 computed identically, SPY and NVDA, open-to-close and rangetable ·
2026-07-26 · 6×6
The ride, session by session: daily turnover, last price, and the thousand-dollar position's mark
The ride, session by session: daily turnover, last price, and the thousand-dollar position's mark
| date | contracts_traded | day_premium_usd_m | day_last_price | position_value_usd | pct_of_peak |
|---|---|---|---|---|---|
| 2026-06-15 | 385 | 0.06 | 1.4 | 140000 | 18.8 |
| 2026-06-16 | 343 | 0.06 | 2.19 | 219000 | 29.4 |
| 2026-06-17 | 334 | 0.08 | 2.87 | 287000 | 38.5 |
| 2026-06-18 | 1177 | 0.16 | 1.27 | 127000 | 17 |
| 2026-06-22 | 4505 | 0.41 | 1.06 | 106000 | 14.2 |
| 2026-06-23 | 9718 | 2.86 | 3.6 | 360000 | 48.3 |
| 2026-06-24 | 3114 | 1.03 | 4.33 | 433000 | 58.1 |
| 2026-06-25 | 4780 | 2.94 | 5.25 | 525000 | 70.5 |
| 2026-06-26 | 3815 | 2.43 | 7.45 | 745000 | 100 |
| 2026-06-29 | 1717 | 1.08 | 4.95 | 495000 | 66.4 |
the exact SQL behind every number
WITH (
SELECT (ticker, first_px)
FROM (
SELECT ticker,
toFloat64(argMin(price, (sip_timestamp, price))) AS first_px,
toFloat64(argMax(price, (sip_timestamp, price))) AS last_px,
count() AS trades
FROM global_markets.options_trades
WHERE ((startsWith(ticker, 'O:MU') AND length(ticker) = 19) OR (startsWith(ticker, 'O:NVDA') AND length(ticker) = 21) OR (startsWith(ticker, 'O:TSLA') AND length(ticker) = 21) OR (startsWith(ticker, 'O:SPY') AND length(ticker) = 20) OR (startsWith(ticker, 'O:QQQ') AND length(ticker) = 20) OR (startsWith(ticker, 'O:AAPL') AND length(ticker) = 21))
AND sip_timestamp >= toDateTime64('2026-06-01 00:00:00', 9) AND sip_timestamp < toDateTime64('2026-07-01 00:00:00', 9)
GROUP BY ticker
HAVING count() >= 50 AND argMin(price, (sip_timestamp, price)) > 0
)
ORDER BY last_px / first_px DESC, ticker ASC
LIMIT 1
) AS winner
SELECT toDate(sip_timestamp) AS date,
toUInt64(sum(size)) AS contracts_traded,
round(sum(toFloat64(price) * toFloat64(size)) * 100 / 1e6, 2) AS day_premium_usd_m,
round(toFloat64(argMax(price, (sip_timestamp, price))), 2) AS day_last_price,
round(floor(1000 / (winner.2 * 100)) * toFloat64(argMax(price, (sip_timestamp, price))) * 100, 0) AS position_value_usd,
round(100 * toFloat64(argMax(price, (sip_timestamp, price))) / max(toFloat64(argMax(price, (sip_timestamp, price)))) OVER (), 1) AS pct_of_peak
FROM global_markets.options_trades
WHERE ticker = winner.1
AND sip_timestamp >= toDateTime64('2026-06-01 00:00:00', 9) AND sip_timestamp < toDateTime64('2026-07-01 00:00:00', 9)
GROUP BY date
ORDER BY date ASC
More from this analysisThe Best and Worst Thousand Dollars of June 2026
The loss pile by root: contracts down 90%+ from first print, share of the pile, and each root's ten-baggers
table 6×6
→
Calibration: every month of 2026 computed identically, SPY and NVDA, open-to-close and range
table 6×6
→
The five biggest first-print-to-last-print multiples of June, priced from both chairs (six liquid roots, 50+ trades)
table 5×9
→
The most expensive ticket to zero: the priciest contract that ended at two cents or less
scalar 1×5
→
See all 2,173 queries →