STRASMORE/EXPLORE 2,170 QUERIES

MU: median quoted spread by half hour on July 7, 2026 (ET, regular hours)

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-08-08, from Why Are Spreads Wider at the Open? Real Data.

as of series 13×5read in context →
MU: median quoted spread by half hour on July 7, 2026 (ET, regular hours) — 13 rows by 5 columns, computed from US exchange, SIP and OPRA data.
et_timemedian_spread_centsmedian_spread_bpspct_of_widestdropped_onesided_locked_crossed
09:30626.7100109
10:00454.972.6349
10:30444.97156
11:00454.972.630
11:30424.667.728
12:00394.262.921
12:30414.466.117
13:00434.669.45
13:30414.466.110
14:00424.567.712
14:30424.667.730
15:00394.362.933
15:30384.161.341
Rows × columns
13 × 5
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 MU: median quoted spread by half hour on July 7, 2026 (ET, regular hours), derived from the stored result.
ColumnTypeRangeNotes
et_time date 09:30 to 15:30
median_spread_cents number 38 to 62
median_spread_bps number 4.1 to 6.7
pct_of_widest number 61.3 to 100 percent
dropped_onesided_locked_crossed text 12 distinct values (10, 109, 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_time,
       median_spread_cents,
       median_spread_bps,
       round(100 * median_spread_cents / max(median_spread_cents) OVER (), 1) AS pct_of_widest,
       dropped_onesided_locked_crossed
FROM (
    SELECT formatDateTime(toStartOfInterval(toTimeZone(sip_timestamp, 'America/New_York'), INTERVAL 30 MINUTE), '%H:%i') AS et_time,
           round(quantileExactIf(0.5)(toFloat64(ask_price - bid_price) * 100, bid_price > 0 AND ask_price > bid_price), 1) AS median_spread_cents,
           round(quantileExactIf(0.5)(toFloat64(ask_price - bid_price) / ((toFloat64(ask_price) + toFloat64(bid_price)) / 2) * 10000, bid_price > 0 AND ask_price > bid_price), 1) AS median_spread_bps,
           toString(countIf(NOT (bid_price > 0 AND ask_price > bid_price))) AS dropped_onesided_locked_crossed
    FROM global_markets.cache_stocks_quotes
    WHERE ticker = 'MU'
      AND sip_timestamp >= '2026-07-07 13:30:00'
      AND sip_timestamp < '2026-07-07 20:00:00'
    GROUP BY et_time
)
ORDER BY et_time

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 Are Spreads Wider at the Open? Real Data
Share of quote updates at the one-cent minimum spread, by half hour (regular hours, ET) series 13×4 Median spread each half hour, as a multiple of each name's tightest bucket (regular hours, ET) series 13×4 Median quoted spread by phase of the trading day, in basis points (ET clock) ranking 5×4 Session by session: how often, and by how much, the open ran wider than midday table 3×6 The opening premium priced: median and 90th-percentile spread at the open (9:30-10:00 ET) vs. midday (12:00-14:00 ET) table 3×12 Window guard: the UTC session filter maps to a 9:30 a.m. ET start on both ends of the rolling window scalar 1×2 See all 2,170 queries →