STRASMORE/EXPLORE 2,648 QUERIES

Average quoted spread by ET half hour: AAPL and KO, Friday July 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-02, from Learn Quant Trading From an Open Source Book.

as of series 16×3read in context →
Average quoted spread by ET half hour: AAPL and KO, Friday July 17, 2026 — 16 rows by 3 columns, computed from US exchange, SIP and OPRA data.
et_timeaapl_spread_bpsko_spread_bps
09:0010.5328.87
09:302.383.32
10:001.92.41
10:301.441.97
11:001.271.78
11:301.211.6
12:001.351.58
12:301.421.49
13:001.171.43
13:301.021.44
14:000.941.33
14:301.051.43
15:000.881.35
15:301.011.34
16:004.548.47
16:303.278.04
Rows × columns
16 × 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 Average quoted spread by ET half hour: AAPL and KO, Friday July 17, 2026, derived from the stored result.
ColumnTypeRangeNotes
et_time text 16 distinct values (09:00, 09:30, 10:00…)
aapl_spread_bps number 0.88 to 10.53
ko_spread_bps number 1.33 to 28.87

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.

WITH quotes AS (
    SELECT ticker,
           toStartOfInterval(toTimeZone(sip_timestamp, 'America/New_York'), INTERVAL 30 MINUTE) AS bucket,
           toFloat64(ask_price - bid_price) / toFloat64((ask_price + bid_price) / 2) * 10000 AS spread_bps
    FROM global_markets.cache_stocks_quotes
    WHERE ticker IN ('AAPL', 'KO')
      AND sip_timestamp >= toDateTime('2026-07-17 13:00:00')
      AND sip_timestamp < toDateTime('2026-07-17 21:00:00')
      AND bid_price > 0
      AND ask_price > bid_price
)
SELECT formatDateTime(bucket, '%H:%i') AS et_time,
       round(avgIf(spread_bps, ticker = 'AAPL'), 2) AS aapl_spread_bps,
       round(avgIf(spread_bps, ticker = 'KO'), 2) AS ko_spread_bps
FROM quotes
WHERE spread_bps > 0 AND spread_bps < 500
GROUP BY et_time
HAVING countIf(ticker = 'AAPL') > 0 AND countIf(ticker = 'KO') > 0
ORDER BY et_time
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.

More from this analysisLearn Quant Trading From an Open Source Book
Average distance from one session's close to the next session's open, monthly series 24×4 → US tickers trading in a June week, and how many still traded in June 2026 ranking 11×4 → Twelve months of daily moves: annualized volatility and worst session, eight names ranking 8×3 → KO quarterly dividend in cents and as a percent of the share price, 2016 to 2026 series 42×4 → Days between a dividend declaration and its ex-date, by month series 24×3 → Stock splits taking effect each quarter, forward and reverse series 16×3 → See all 2,648 queries →