The one-cent floor: share price, percent of quotes exactly one cent wide, and what a penny costs in bps
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-09-20, from What It Costs to Trade a Stock, Measured.
| ticker | typical_share_price | pct_quotes_at_one_cent | one_cent_in_bps | typical_spread_bps | dist_from_floor_bps |
|---|---|---|---|---|---|
| SPY | 759.18 | 30.4 | 0.13 | 0.26 | 0.13 |
| AAPL | 332.31 | 15.7 | 0.3 | 0.92 | 0.62 |
| KO | 88.4 | 79.7 | 1.13 | 1.13 | 0 |
| SOXS | 48.44 | 68.9 | 2.06 | 2.17 | 0.11 |
| F | 13.82 | 99.3 | 7.24 | 7.23 | 0.01 |
- Rows × columns
- 5 × 6
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
ticker |
text | 5 distinct values (AAPL, F, KO…) | |
typical_share_price |
number | 13.82 to 759.18 | US dollars |
pct_quotes_at_one_cent |
number | 15.7 to 99.3 | percent |
one_cent_in_bps |
number | 0.13 to 7.24 | |
typical_spread_bps |
number | 0.26 to 7.23 | |
dist_from_floor_bps |
number | 0 to 0.62 |
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 ticker,
typical_share_price,
pct_quotes_at_one_cent,
round(100 / typical_share_price, 2) AS one_cent_in_bps,
typical_spread_bps,
round(abs(typical_spread_bps - 100 / typical_share_price), 2) AS dist_from_floor_bps
FROM (
SELECT ticker,
round(quantileExactIf(0.5)((toFloat64(ask_price) + toFloat64(bid_price)) / 2, bid_price > 0 AND ask_price > bid_price), 2) AS typical_share_price,
round(100 * countIf(bid_price > 0 AND ask_price > bid_price AND abs(toFloat64(ask_price - bid_price) - 0.01) < 0.001) / countIf(bid_price > 0 AND ask_price > bid_price), 1) AS pct_quotes_at_one_cent,
round(quantileExactIf(0.5)(toFloat64(ask_price - bid_price) / (toFloat64(ask_price + bid_price) / 2), bid_price > 0 AND ask_price > bid_price) * 10000, 2) AS typical_spread_bps
FROM global_markets.cache_stocks_quotes
WHERE ticker IN ('SPY', 'AAPL', 'KO', 'F', 'SOXS')
AND sip_timestamp >= toDateTime(today() - 10)
AND sip_timestamp < toDateTime(today() - 3)
AND (toHour(sip_timestamp) * 60 + toMinute(sip_timestamp)) BETWEEN 810 AND 1199
GROUP BY ticker
)
ORDER BY typical_share_price DESC