STRASMORE/EXPLORE 2,170 QUERIES

Live price against a 15 minute delayed view, one SPY session

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-06, from Why Stock Quotes Are Delayed 15 Minutes.

as of series 37×5read in context →
Live price against a 15 minute delayed view, one SPY session — 37 rows by 5 columns, computed from US exchange, SIP and OPRA data.
et_timelive_pricedelayed_pricegap_deltasession_label
09:50746.13744.221.91Jun 9
10:00744.18745.681.5Jun 9
10:10743.13744.991.86Jun 9
10:20739.78744.524.74Jun 9
10:30740.49741.180.69Jun 9
10:40741.21741.980.77Jun 9
10:50734.91740.75.79Jun 9
11:00737.84738.110.27Jun 9
11:10738.3736.421.88Jun 9
11:20736.39736.340.05Jun 9
11:30731.4737.145.74Jun 9
11:40731.36733.682.32Jun 9
11:50731.35731.580.23Jun 9
12:00729.81731.741.93Jun 9
12:10728.02730.482.46Jun 9
12:20725.69728.993.3Jun 9
12:30726.56727.651.09Jun 9
12:40723.05727.824.77Jun 9
12:50724.47727.983.51Jun 9
13:00727.02725.291.73Jun 9
13:10727.37724.662.71Jun 9
13:20730.34728.421.92Jun 9
13:30730.53728.032.5Jun 9
13:40732.62729.932.69Jun 9
13:50732.01731.30.71Jun 9
14:00733.01732.580.43Jun 9
14:10732.99732.90.09Jun 9
14:20734.01732.791.22Jun 9
14:30735.81733.242.57Jun 9
14:40735.69734.471.22Jun 9
14:50735.18735.420.25Jun 9
15:00736.4734.831.57Jun 9
15:10735.9735.880.02Jun 9
15:20733.88737.043.16Jun 9
15:30734.59734.270.32Jun 9
15:40732.68733.911.23Jun 9
15:50735.29734.490.8Jun 9
Rows × columns
37 × 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 Live price against a 15 minute delayed view, one SPY session, derived from the stored result.
ColumnTypeRangeNotes
et_time date 09:50 to 15:50
live_price number 723.05 to 746.13 US dollars
delayed_price number 724.66 to 745.68 US dollars
gap_delta number 0.02 to 5.79
session_label text 1 distinct value (Jun 9)

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
    widest_session AS
    (
        SELECT toDate(toTimeZone(window_start, 'America/New_York')) AS d
        FROM global_markets.delayed_stocks_minute_aggs
        WHERE ticker = 'SPY'
          AND close > 0
          AND window_start >= '2026-06-01 00:00:00'
          AND window_start <  '2026-07-01 00:00:00'
          AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
               + toMinute(toTimeZone(window_start, 'America/New_York'))) >= 570
          AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
               + toMinute(toTimeZone(window_start, 'America/New_York'))) < 960
        GROUP BY d
        ORDER BY (max(toFloat64(high)) - min(toFloat64(low))) / min(toFloat64(low)) DESC
        LIMIT 1
    ),
    session_bars AS
    (
        SELECT
            toTimeZone(window_start, 'America/New_York')                      AS et,
            toTimeZone(window_start, 'America/New_York') - INTERVAL 15 MINUTE AS et_earlier,
            toFloat64(close)                                                  AS px
        FROM global_markets.delayed_stocks_minute_aggs
        WHERE ticker = 'SPY'
          AND close > 0
          AND toDate(toTimeZone(window_start, 'America/New_York')) IN (SELECT d FROM widest_session)
          AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
               + toMinute(toTimeZone(window_start, 'America/New_York'))) >= 570
          AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
               + toMinute(toTimeZone(window_start, 'America/New_York'))) < 960
    )
SELECT
    formatDateTime(a.et, '%H:%i')  AS et_time,
    round(a.px, 2)                 AS live_price,
    round(b.px, 2)                 AS delayed_price,
    round(abs(a.px - b.px), 2)     AS gap_delta,
    formatDateTime(a.et, '%b %e')  AS session_label
FROM session_bars AS a
INNER JOIN session_bars AS b ON b.et = a.et_earlier
WHERE toMinute(a.et) % 10 = 0
ORDER BY a.et

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 Stock Quotes Are Delayed 15 Minutes
How far SPY travels in 15 minutes, by hour of the session (June 2026) series 7×4 How often the last price changes, minute by minute (June 2026) ranking 6×3 The 15 minute gap across six household tickers (June 2026) ranking 6×3 AAPL quote messages per 15 minutes, pinned session of Jun 16, 2026 series 36×2 Venue clock to consolidated tape clock, KO quotes on June 16, 2026 series 15×4 US equity exchanges that feed the consolidated tape table 18×4 See all 2,170 queries →