STRASMORE/EXPLORE 2,170 QUERIES

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.

as of series 12×5read in context →
The sessions: regular-hours close, close-over-close change, full-day volume — 12 rows by 5 columns, computed from US exchange, SIP and OPRA data.
et_dateclose_usdchange_pctshares_mdollar_bn
2026-06-12161.29None513.584.12
2026-06-15192.4219.3251.145.01
2026-06-16201.995315.766.35
2026-06-17192.2-4.8196.238.78
2026-06-18184.97-3.8211.738.22
2026-06-22154.59-16.4165.227.21
2026-06-23156.061152.323.88
2026-06-24154.46-171.711.19
2026-06-25153.01-0.9599.04
2026-06-26152.74-0.284.512.96
2026-06-291647.471.911.43
2026-06-30170.724.175.812.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
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for The sessions: regular-hours close, close-over-close change, full-day volume, derived from the stored result.
ColumnTypeRangeNotes
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 →