aapl_trace
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-22, from stock-splits-in-india-face-value.
| session_date | close_usd |
|---|---|
| 2020-08-24 | 125.86 |
| 2020-08-25 | 124.82 |
| 2020-08-26 | 126.52 |
| 2020-08-27 | 125.01 |
| 2020-08-28 | 124.81 |
| 2020-08-31 | 129.04 |
| 2020-09-01 | 134.18 |
| 2020-09-02 | 131.4 |
| 2020-09-03 | 120.88 |
| 2020-09-04 | 120.96 |
- Rows × columns
- 10 × 2
- 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 |
|---|---|---|---|
session_date |
date | 2020-08-24 to 2020-09-04 | |
close_usd |
number | 120.88 to 134.18 | 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
toString(date) AS session_date,
round(toFloat64(any(close)), 2) AS close_usd
FROM global_markets.stocks_daily_aggs
WHERE ticker = 'AAPL'
AND date >= '2020-08-24'
AND date <= '2020-09-04'
GROUP BY date
ORDER BY date