mkondo_wa_siku
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 us-stock-market-hours-east-africa-time.
| saa_eat | volume_mln | share_pct |
|---|---|---|
| 12:00 | 0.04 | 0.09 |
| 13:00 | 0.06 | 0.13 |
| 14:00 | 0.2 | 0.45 |
| 15:00 | 0.37 | 0.83 |
| 16:00 | 4.6 | 10.32 |
| 17:00 | 5.86 | 13.15 |
| 18:00 | 4.78 | 10.73 |
| 19:00 | 3.69 | 8.29 |
| 20:00 | 3.33 | 7.48 |
| 21:00 | 4.32 | 9.69 |
| 22:00 | 11.07 | 24.86 |
| 23:00 | 5.62 | 12.61 |
| 00:00 | 0.33 | 0.74 |
| 01:00 | 0.13 | 0.28 |
| 02:00 | 0.05 | 0.11 |
| 11:00 | 0.11 | 0.25 |
- Rows × columns
- 16 × 3
- 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 |
|---|---|---|---|
saa_eat |
text | 16 distinct values (00:00, 01:00, 02:00…) | |
volume_mln |
number | 0.04 to 11.07 | count |
share_pct |
number | 0.09 to 24.86 | 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.
WITH baa AS
(
SELECT
toHour(toTimeZone(window_start, 'Africa/Nairobi')) AS saa,
toDate(toTimeZone(window_start, 'America/New_York')) AS siku,
volume
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'SPY'
AND window_start >= toDateTime(today() - 100)
AND window_start < toDateTime(today() - 2)
AND volume > 0
)
SELECT
concat(leftPad(toString(h.saa), 2, '0'), ':00') AS saa_eat,
round(toFloat64(h.ujazo) / h.vikao / 1000000, 2) AS volume_mln,
round(100 * toFloat64(h.ujazo) / toFloat64(t.jumla), 2) AS share_pct
FROM
(
SELECT
saa,
sum(volume) AS ujazo,
countDistinct(siku) AS vikao
FROM baa
GROUP BY saa
) AS h
CROSS JOIN
(
SELECT sum(volume) AS jumla FROM baa
) AS t
ORDER BY if(h.saa >= 12, h.saa, h.saa + 24)
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.