One session's price path, SPY every 15 minutes on June 17, 2026
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-06, from How Mutual Fund NAV Is Calculated: Example.
| et_time | spy_price |
|---|---|
| 09:30 | 750.93 |
| 09:45 | 751.48 |
| 10:00 | 750.23 |
| 10:15 | 751.34 |
| 10:30 | 751.4 |
| 10:45 | 750.21 |
| 11:00 | 749.07 |
| 11:15 | 749.79 |
| 11:30 | 749.97 |
| 11:45 | 750.35 |
| 12:00 | 750.8 |
| 12:15 | 750.68 |
| 12:30 | 750.79 |
| 12:45 | 750.12 |
| 13:00 | 749.79 |
| 13:15 | 749.04 |
| 13:30 | 749.34 |
| 13:45 | 749.41 |
| 14:00 | 747.59 |
| 14:15 | 747.85 |
| 14:30 | 745.93 |
| 14:45 | 749.12 |
| 15:00 | 746.61 |
| 15:15 | 746.08 |
| 15:30 | 741.45 |
| 15:45 | 740.12 |
| 16:00 | 741.83 |
- Rows × columns
- 27 × 2
- 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 |
|---|---|---|---|
et_time |
text | 27 distinct values (09:30, 09:45, 10:00…) | |
spy_price |
number | 740.12 to 751.48 | US dollars |
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
formatDateTime(toTimeZone(window_start, 'America/New_York'), '%H:%i') AS et_time,
round(toFloat64(argMax(close, window_start)), 2) AS spy_price
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'SPY'
AND window_start >= toDateTime('2026-06-17 13:30:00', 'UTC')
AND window_start <= toDateTime('2026-06-17 20:00:00', 'UTC')
AND toMinute(toTimeZone(window_start, 'America/New_York')) % 15 = 0
GROUP BY et_time
ORDER BY et_time