STRASMORE/EXPLORE 2,170 QUERIES

Average quoted spread by half hour, AAPL and KO, June 17 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-08-12, from Held vs Not-Held Orders: Broker Discretion.

as of series 15×3read in context →
Average quoted spread by half hour, AAPL and KO, June 17 2026 — 15 rows by 3 columns, computed from US exchange, SIP and OPRA data.
et_timeaapl_spread_bpsko_spread_bps
09:006.5721.21
09:301.812.88
10:001.221.97
10:301.321.93
11:001.111.66
11:300.911.43
12:000.891.42
12:300.731.4
13:000.821.4
13:300.731.39
14:001.181.85
14:301.051.45
15:001.061.44
15:300.981.39
16:006.7258.27
Rows × columns
15 × 3
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 Average quoted spread by half hour, AAPL and KO, June 17 2026, derived from the stored result.
ColumnTypeRangeNotes
et_time date 09:00 to 16:00
aapl_spread_bps number 0.73 to 6.72
ko_spread_bps number 1.39 to 58.27

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
    formatDateTime(
        toStartOfInterval(toTimeZone(sip_timestamp, 'America/New_York'), INTERVAL 30 MINUTE),
        '%H:%i')                                       AS et_time,
    round(avgIf(toFloat64(ask_price - bid_price)
                / toFloat64((ask_price + bid_price) / 2) * 10000,
                ticker = 'AAPL'), 2)                   AS aapl_spread_bps,
    round(avgIf(toFloat64(ask_price - bid_price)
                / toFloat64((ask_price + bid_price) / 2) * 10000,
                ticker = 'KO'), 2)                     AS ko_spread_bps
FROM global_markets.cache_stocks_quotes
WHERE ticker IN ('AAPL', 'KO')
  AND sip_timestamp >= '2026-06-17 13:00:00'
  AND sip_timestamp <  '2026-06-17 20:30:00'
  AND bid_price > 0
  AND ask_price > bid_price
  AND toFloat64(ask_price - bid_price) / toFloat64(bid_price) < 0.02
GROUP BY et_time
HAVING countIf(ticker = 'AAPL') > 0
   AND countIf(ticker = 'KO') > 0
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 analysisHeld vs Not-Held Orders: Broker Discretion
Distance from AAPL's daily VWAP to that morning's opening print series 9×2 Average gap between the daily VWAP and the open, June 2026 ranking 6×3 Share of AAPL prints and volume by trade size, June 17 2026 ranking 5×3 Share of SPY's regular-session volume by five-minute ET bucket series 79×2 SPY minute volume into the close, June 30 2026 (quarter end) series 31×2 SPY: opening and closing window share of session volume, by month series 25×3 See all 2,170 queries →