STRASMORE/EXPLORE 2,170 QUERIES

How far SPY moved inside a single minute: average one-minute high-to-low range by time of day, July 8, 2026

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 Market Order vs Limit Order, Measured.

as of scalar 1×4read in context →
open window cents
70.3
midday window cents
35.8
close window cents
38.8
open vs midday
2
Rows × columns
1 × 4
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 How far SPY moved inside a single minute: average one-minute high-to-low range by time of day, July 8, 2026, derived from the stored result.
ColumnTypeRangeNotes
open_window_cents number every row is 70.3 US dollars
midday_window_cents number every row is 35.8
close_window_cents number every row is 38.8 US dollars
open_vs_midday number every row is 2 US dollars

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 round(avgIf(range_cents, et_minute >= '09:30' AND et_minute < '09:45'), 1) AS open_window_cents,
       round(avgIf(range_cents, et_minute >= '12:00' AND et_minute < '13:00'), 1) AS midday_window_cents,
       round(avgIf(range_cents, et_minute >= '15:45' AND et_minute < '16:00'), 1) AS close_window_cents,
       round(avgIf(range_cents, et_minute >= '09:30' AND et_minute < '09:45')
             / avgIf(range_cents, et_minute >= '12:00' AND et_minute < '13:00'), 1) AS open_vs_midday
FROM (
    SELECT formatDateTime(toTimeZone(window_start, 'America/New_York'), '%H:%i') AS et_minute,
           toFloat64(high - low) * 100 AS range_cents
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'SPY'
      AND window_start >= '2026-07-08 04:00:00'
      AND window_start < '2026-07-09 04:00:00'
)
WHERE et_minute >= '09:30' AND et_minute < '16:00'

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 analysisMarket Order vs Limit Order, Measured
AAPL options vs. AAPL stock: median quoted spread, same regular session, July 8, 2026 scalar 1×5 What a 100-share market order pays crossing the spread: July 8, 2026, regular session ranking 5×4 Displayed shares at the best ask: median size and how often it covered a 1,000-share order, July 8, 2026 ranking 5×4 Median quoted spread by session window: pre-market vs. regular vs. after-hours, July 8, 2026 ranking 3×4 SPY on a calm day vs. a fast day: session range, per-minute movement, and quoted spread series 2×5 The busiest price and size pairing, half hour by half hour scalar 1×3 See all 2,170 queries →