The sessions: regular-hours close, close-over-close change, full-day volume
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-07-27, from SPCX: SpaceX's First Month on the Public Market.
| et_date | close_usd | change_pct | shares_m | dollar_bn |
|---|---|---|---|---|
| 2026-06-12 | 161.29 | None | 513.5 | 84.12 |
| 2026-06-15 | 192.42 | 19.3 | 251.1 | 45.01 |
| 2026-06-16 | 201.99 | 5 | 315.7 | 66.35 |
| 2026-06-17 | 192.2 | -4.8 | 196.2 | 38.78 |
| 2026-06-18 | 184.97 | -3.8 | 211.7 | 38.22 |
| 2026-06-22 | 154.59 | -16.4 | 165.2 | 27.21 |
| 2026-06-23 | 156.06 | 1 | 152.3 | 23.88 |
| 2026-06-24 | 154.46 | -1 | 71.7 | 11.19 |
| 2026-06-25 | 153.01 | -0.9 | 59 | 9.04 |
| 2026-06-26 | 152.74 | -0.2 | 84.5 | 12.96 |
| 2026-06-29 | 164 | 7.4 | 71.9 | 11.43 |
| 2026-06-30 | 170.72 | 4.1 | 75.8 | 12.77 |
- Rows × columns
- 12 × 5
- Period covered
- to
- Computed
- Completeness
- Some fields are partly empty — see the columns below
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
et_date |
date | 2026-06-12 to 2026-06-30 | |
close_usd |
number | 152.74 to 201.99 | US dollars |
change_pct |
number | -16.4 to 19.3 | percent · 11 of 12 rows populated |
shares_m |
number | 59 to 513.5 | count |
dollar_bn |
number | 9.04 to 84.12 |
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
et_date,
close_usd,
round(if(prev_close = 0, NULL, (close_usd / prev_close - 1) * 100), 1) AS change_pct,
shares_m,
dollar_bn
FROM (
SELECT et_date, close_usd, shares_m, dollar_bn,
lagInFrame(close_usd) OVER (ORDER BY et_date ASC ROWS BETWEEN 1 PRECEDING AND CURRENT ROW) AS prev_close
FROM (
SELECT
toDate(toTimeZone(window_start, 'America/New_York')) AS et_date,
round(argMaxIf(toFloat64(close), window_start, (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199), 2) AS close_usd,
round(toFloat64(sum(volume)) / 1e6, 1) AS shares_m,
round(sum(toFloat64(close) * toFloat64(volume)) / 1e9, 2) AS dollar_bn
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'SPCX'
AND window_start >= toDateTime('2026-06-12 00:00:00') AND window_start < toDateTime('2026-07-01 00:00:00')
GROUP BY et_date
)
)
ORDER BY et_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 analysisSPCX: SpaceX's First Month on the Public Market
Symbol-reuse receipt: thirteen months of SPCX minute bars, May 2026 is absent entirely
series 12×5
→
The seasoning curve: regular-hours spread by session, per-update and time-weighted
series 12×8
→
FINRA off-exchange short volume by session: marked-short share and reported volume
series 12×4
→
Options session by session: contracts, the call/put split, and the put/call ratio
series 10×7
→
What it cost to trade the busiest contract: NBBO spread over its three sessions
series 3×6
→
Where the contracts landed: call and put volume by strike bucket
table 19×5
→
See all 2,170 queries →