daily_record_counts
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-24, from what-historical-tick-data-costs.
| date | spy_trade_millions | aapl_trade_millions |
|---|---|---|
| 2026-08-03 | 0.81 | 1.39 |
| 2026-08-04 | 0.83 | 1.1 |
| 2026-08-05 | 0.7 | 0.96 |
| 2026-08-06 | 0.61 | 0.83 |
| 2026-08-07 | 0.58 | 0.72 |
| 2026-08-10 | 0.56 | 0.92 |
| 2026-08-11 | 0.52 | 0.76 |
| 2026-08-12 | 0.5 | 0.88 |
| 2026-08-13 | 0.5 | 0.78 |
| 2026-08-14 | 0.47 | 0.62 |
| 2026-08-17 | 0.52 | 0.77 |
| 2026-08-18 | 0.56 | 0.91 |
| 2026-08-19 | 0.52 | 0.9 |
| 2026-08-20 | 0.6 | 0.71 |
| 2026-08-21 | 0.49 | 0.67 |
| 2026-08-24 | 0.49 | 0.83 |
| 2026-08-25 | 0.46 | 0.6 |
| 2026-08-26 | 0.45 | 0.66 |
| 2026-08-27 | 0.5 | 0.72 |
| 2026-08-28 | 0.55 | 0.76 |
| 2026-08-31 | 0.53 | 0.85 |
- Rows × columns
- 21 × 3
- Period covered
- to
- 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 |
|---|---|---|---|
date |
date | 2026-08-03 to 2026-08-31 | |
spy_trade_millions |
number | 0.45 to 0.83 | |
aapl_trade_millions |
number | 0.6 to 1.39 |
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
toDate(toTimeZone(window_start, 'America/New_York')) AS date,
round(sumIf(transactions, ticker = 'SPY') / 1e6, 2) AS spy_trade_millions,
round(sumIf(transactions, ticker = 'AAPL') / 1e6, 2) AS aapl_trade_millions
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('SPY', 'AAPL')
AND window_start >= toDateTime('2026-08-03 04:00:00')
AND window_start < toDateTime('2026-09-01 04:00:00')
GROUP BY date
HAVING spy_trade_millions > 0
ORDER BY date
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.