Eight mega-caps: change vs July 24 and regular-hours dollars, July 27
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-01, from Market Recap: July 27, 2026, The Day in Numbers.
| ticker | prior_close | day_close | pct_chg | day_dollar_bn |
|---|---|---|---|---|
| AAPL | 333.07 | 336.92 | 1.16 | 12.93 |
| AMZN | 232.08 | 231.36 | -0.31 | 5.92 |
| AVGO | 381.81 | 383.35 | 0.4 | 4.71 |
| GOOGL | 319.73 | 326.56 | 2.14 | 7.59 |
| META | 595.2 | 593.93 | -0.21 | 5.23 |
| MSFT | 381.74 | 389.13 | 1.94 | 8.83 |
| NVDA | 206.96 | 196.52 | -5.04 | 25.42 |
| TSLA | 313 | 309.24 | -1.2 | 11.7 |
- Rows × columns
- 8 × 5
- 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 |
|---|---|---|---|
ticker |
text | 8 distinct values (AAPL, AMZN, AVGO…) | |
prior_close |
number | 206.96 to 595.2 | US dollars |
day_close |
number | 196.52 to 593.93 | US dollars |
pct_chg |
number | -5.04 to 2.14 | percent |
day_dollar_bn |
number | 4.71 to 25.42 |
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.
the exact SQL behind every number
WITH per_name AS (
SELECT
ticker,
toFloat64(argMaxIf(close, window_start, window_start < '2026-07-27 00:00:00')) AS prior_close,
toFloat64(argMaxIf(close, window_start, window_start >= '2026-07-27 00:00:00')) AS day_close,
round(sumIf(toFloat64(close) * toFloat64(volume), window_start >= '2026-07-27 00:00:00') / 1e9, 2) AS day_dollar_bn
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('AAPL', 'AMZN', 'AVGO', 'GOOGL', 'META', 'MSFT', 'NVDA', 'TSLA')
AND ((window_start >= '2026-07-24 13:30:00' AND window_start < '2026-07-24 20:00:00')
OR (window_start >= '2026-07-27 13:30:00' AND window_start < '2026-07-27 20:00:00'))
GROUP BY ticker
)
SELECT
ticker,
round(prior_close, 2) AS prior_close,
round(day_close, 2) AS day_close,
round((day_close / prior_close - 1) * 100, 2) AS pct_chg,
day_dollar_bn
FROM per_name
ORDER BY ticker
Run your own version of this
The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.
More from this analysisMarket Recap: July 27, 2026, The Day in Numbers
Top 6 by dollars traded, top 4 by shares traded: July 27 regular hours
table 10×5
→
Seven names: RTH median quoted spread in basis points, with quote-quality counts, July 27
table 7×5
→
SPY / QQQ / DIA / IWM: July 27 vs the July 24 close, regular hours
table 4×10
→
Biggest gainers and decliners: July 27 close vs July 24 close, $5M+ traded, splits excluded
ranking 16×4
→
Sector ETFs, July 27 close vs July 24 close, ranked
ranking 11×3
→
Treasury curve prints on file, July 22 through July 27
series 4×5
→
See all 2,170 queries →