STRASMORE/EXPLORE 2,648 QUERIES

fill_slices

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-26, from agentic-trading-bots-on-retail-brokerages.

as of ranking 5×4read in context →
fill_slices — 5 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickeravg_trade_sizep95_trade_sizeunder_100_share_pct
NVDA5215786.7
SPY3912589.4
KO3410085.8
AAPL3310093.1
MSFT248595.4
Rows × columns
5 × 4
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 fill_slices, derived from the stored result.
ColumnTypeRangeNotes
ticker text 5 distinct values (AAPL, KO, MSFT…)
avg_trade_size number 24 to 52
p95_trade_size number 85 to 157
under_100_share_pct number 85.8 to 95.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.

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,
    round(avg(toFloat64(size)), 0)                                                    AS avg_trade_size,
    round(quantileDeterministic(0.95)(toFloat64(size), toUInt64(sequence_number)), 0) AS p95_trade_size,
    round(100 * countIf(size < 100) / count(), 1)                                     AS under_100_share_pct
FROM global_markets.stocks_trades
WHERE ticker IN ('SPY', 'AAPL', 'NVDA', 'MSFT', 'KO')
  AND sip_timestamp >= '2026-08-14 17:00:00'
  AND sip_timestamp <  '2026-08-14 18:00:00'
GROUP BY ticker
ORDER BY avg_trade_size DESC
⌘/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 analysisagentic-trading-bots-on-retail-brokerages
options_dte ranking 5×3 → fast_minutes ranking 5×4 → quote_clock series 36×3 → settle_calendar series 12×6 → Top 25 weekly-options underlyings by distinct contracts traded, with expiration weekdays ranking 25×4 → Annualized volatility vs total return, 25 large caps, calmest to wildest (~2 years) ranking 25×3 → See all 2,648 queries →