STRASMORE/EXPLORE 2,170 QUERIES

MSFT: how the January 29, 2026 gap formed, 30-minute premarket buckets

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-26, from Why Do Stocks Gap Up or Down Overnight?.

as of series 11×8read in context →
MSFT: how the January 29, 2026 gap formed, 30-minute premarket buckets — 11 rows by 8 columns, computed from US exchange, SIP and OPRA data.
et_timepriceprior_closevs_prior_close_pctpct_below_prior_closeshares_thousandscum_shares_millionscum_pct_of_regular_volume
04:00454481.72-5.755.751280.130.11
04:30451.32481.72-6.316.311370.260.23
05:00450.2481.72-6.546.541910.460.4
05:30449.13481.72-6.776.771110.570.5
06:00448.85481.72-6.826.821180.680.61
06:30446.2481.72-7.377.372640.950.84
07:00447.77481.72-7.057.053421.291.14
07:30449.22481.72-6.756.753051.61.41
08:00448.86481.72-6.826.8210102.612.31
08:30448.59481.72-6.886.885973.22.84
09:00439.74481.72-8.718.7116604.864.31
Rows × columns
11 × 8
Period covered
to
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 MSFT: how the January 29, 2026 gap formed, 30-minute premarket buckets, derived from the stored result.
ColumnTypeRangeNotes
et_time date 04:00 to 09:00
price number 439.74 to 454 US dollars
prior_close number every row is 481.72 US dollars
vs_prior_close_pct number -8.71 to -5.75 percent
pct_below_prior_close number 5.75 to 8.71 percent
shares_thousands number 111 to 1,660 count
cum_shares_millions number 0.13 to 4.86 count
cum_pct_of_regular_volume number 0.11 to 4.31 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.

the exact SQL behind every number
WITH day_vol AS (
    SELECT sum(toFloat64(volume)) AS rth_vol
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'MSFT'
      AND window_start >= toDateTime('2026-01-29 09:30:00', 'America/New_York')
      AND window_start < toDateTime('2026-01-29 16:00:00', 'America/New_York')
),
prior AS (
    SELECT round(argMax(toFloat64(close), window_start), 2) AS prior_close
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'MSFT'
      AND window_start >= toDateTime('2026-01-28 09:30:00', 'America/New_York')
      AND window_start < toDateTime('2026-01-28 16:00:00', 'America/New_York')
),
buckets AS (
    SELECT toStartOfInterval(toTimeZone(window_start, 'America/New_York'), INTERVAL 30 minute) AS bucket,
           round(argMax(toFloat64(close), window_start), 2) AS price,
           sum(toFloat64(volume)) AS shares
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'MSFT'
      AND window_start >= toDateTime('2026-01-29 04:00:00', 'America/New_York')
      AND window_start < toDateTime('2026-01-29 09:30:00', 'America/New_York')
    GROUP BY bucket
)
SELECT formatDateTime(bucket, '%H:%i') AS et_time,
       price,
       (SELECT prior_close FROM prior) AS prior_close,
       round(100 * (price - (SELECT prior_close FROM prior)) / (SELECT prior_close FROM prior), 2) AS vs_prior_close_pct,
       round(abs(100 * (price - (SELECT prior_close FROM prior)) / (SELECT prior_close FROM prior)), 2) AS pct_below_prior_close,
       round(shares / 1000) AS shares_thousands,
       round(sum(shares) OVER (ORDER BY bucket) / 1000000, 2) AS cum_shares_millions,
       round(100 * sum(shares) OVER (ORDER BY bucket) / (SELECT rth_vol FROM day_vol), 2) AS cum_pct_of_regular_volume
FROM buckets
ORDER BY bucket

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 analysisWhy Do Stocks Gap Up or Down Overnight?
Overnight gaps by ticker, H1 2026: average absolute gap and the single biggest gap series 6×5 SPY's six biggest overnight gaps of H1 2026: and the same day's open-to-close move series 6×3 SPY overnight gaps by weekday: every session, January 2024 through June 2026 series 5×4 MSFT straddle prices at the close before the gap: Jan 28, 2026, Jan 30 expiry table 4×5 What crossed the wire during SPY's biggest overnight gap of H1 2026 table 2×3 SPY, H1 2026: average absolute overnight gap vs average absolute intraday move scalar 1×4 See all 2,170 queries →