STRASMORE/EXPLORE 2,170 QUERIES

How often the quoted spread sits at a single cent (10 June 2026 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-14, from Does Modifying an Order Lose Queue Priority?.

as of ranking 6×3read in context →
How often the quoted spread sits at a single cent (10 June 2026 session) — 6 rows by 3 columns, computed from US exchange, SIP and OPRA data.
symbolavg_spread_centsone_tick_wide_pct
NFLX1.381.4
KO1.3174.2
NVDA2.612.3
AAPL3.3610.5
SPY2.8510
COST77.530.2
Rows × columns
6 × 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 How often the quoted spread sits at a single cent (10 June 2026 session), derived from the stored result.
ColumnTypeRangeNotes
symbol text 6 distinct values (AAPL, COST, KO…)
avg_spread_cents number 1.3 to 77.53
one_tick_wide_pct number 0.2 to 81.4 percent

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
    ticker                                                                                  AS symbol,
    round(avg(toFloat64(ask_price) - toFloat64(bid_price)) * 100, 2)                        AS avg_spread_cents,
    round(100 * countIf(toFloat64(ask_price) - toFloat64(bid_price) <= 0.0105) / count(), 1) AS one_tick_wide_pct
FROM global_markets.cache_stocks_quotes
WHERE ticker IN ('AAPL', 'KO', 'SPY', 'NVDA', 'COST', 'NFLX')
  AND sip_timestamp >= '2026-06-10 13:30:00'
  AND sip_timestamp <  '2026-06-10 20:00:00'
  AND bid_price > 0
  AND ask_price > bid_price
  AND toFloat64(ask_price) - toFloat64(bid_price) < 5
GROUP BY ticker
ORDER BY one_tick_wide_pct DESC

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 analysisDoes Modifying an Order Lose Queue Priority?
Share of one minute windows carrying at least N shares (June 2026) ranking 9×3 How fast the tape drains a queue, by time of day (AAPL, June 2026) series 26×3 Distinct best bid prices per quarter hour (AAPL and KO, 10 June 2026) series 26×3 Average shares per trade print, June 2026 ranking 8×2 Average quoted spread and time at a one cent spread, midday June 10 2026 ranking 6×3 How AAPL prints break down by trade size, June 10 2026 ranking 5×3 See all 2,170 queries →