STRASMORE/EXPLORE 2,433 QUERIES

AAPL quoted spread across the trading clock, 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-07, from Rule 605 vs 606: Execution Quality Reports.

as of series 22×3read in context →
AAPL quoted spread across the trading clock, June 17, 2026 — 22 rows by 3 columns, computed from US exchange, SIP and OPRA data.
et_timeavg_spread_centsavg_spread_bps
07:0016.955.67
07:3021.57.19
08:0018.16.06
08:3012.794.28
09:0019.736.57
09:305.451.81
10:003.651.22
10:303.961.32
11:003.321.11
11:302.720.91
12:002.670.89
12:302.160.73
13:002.420.82
13:302.160.73
14:003.481.18
14:303.11.05
15:003.131.06
15:302.890.98
16:0019.896.72
16:3025.678.67
17:0047.9716.11
17:3015.855.33
Rows × columns
22 × 3
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 AAPL quoted spread across the trading clock, June 17, 2026, derived from the stored result.
ColumnTypeRangeNotes
et_time text 22 distinct values (07:00, 07:30, 08:00…)
avg_spread_cents number 2.16 to 47.97
avg_spread_bps number 0.73 to 16.11

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.

Run it yourself

This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.

SELECT
    formatDateTime(
        toStartOfInterval(toTimeZone(sip_timestamp, 'America/New_York'), INTERVAL 30 MINUTE),
        '%H:%i')                                                      AS et_time,
    round(avg(toFloat64(ask_price - bid_price)) * 100, 2)             AS avg_spread_cents,
    round(avg(10000 * toFloat64(ask_price - bid_price)
              / ((toFloat64(ask_price) + toFloat64(bid_price)) / 2)), 2) AS avg_spread_bps
FROM global_markets.cache_stocks_quotes
WHERE ticker = 'AAPL'
  AND sip_timestamp >= '2026-06-17 11:00:00'
  AND sip_timestamp <  '2026-06-17 22:00:00'
  AND bid_price > 0
  AND ask_price > bid_price
  AND toFloat64(ask_price - bid_price) < 5
GROUP BY et_time
ORDER BY et_time
⌘/Ctrl + Enter
More from this analysisRule 605 vs 606: Execution Quality Reports
Where AAPL prints fall by trade size, June 17, 2026 ranking 5×3 Share of June 2026 volume reported to FINRA facilities ranking 5×3 Effective spread against quoted spread by trade size, AAPL ranking 4×4 Share of Apple volume printed off exchange, by month series 12×2 Where Apple trades printed on June 10, 2026, by venue ranking 15×3 Quoted spread and quote traffic over fifteen minutes, June 10, 2026 table 5×5 See all 2,433 queries →