{"slug":"market-recap-2026-07-28","qid":"baseline_names","label":"Eight mega-caps: change vs July 27 and regular-hours dollars, July 28","post_title":"Market Recap: July 28, 2026, The Day in Numbers","post_url":"/blog/market-recap-2026-07-28#q-baseline_names","columns":["ticker","prior_close","day_close","pct_chg","day_dollar_bn"],"rows":[{"ticker":"AAPL","prior_close":336.92,"day_close":340.2,"pct_chg":0.97,"day_dollar_bn":13.19},{"ticker":"AMZN","prior_close":231.36,"day_close":230.94,"pct_chg":-0.18,"day_dollar_bn":7.09},{"ticker":"AVGO","prior_close":383.35,"day_close":380.74,"pct_chg":-0.68,"day_dollar_bn":5.71},{"ticker":"GOOGL","prior_close":326.56,"day_close":333.73,"pct_chg":2.2,"day_dollar_bn":7.51},{"ticker":"META","prior_close":593.93,"day_close":593.66,"pct_chg":-0.05,"day_dollar_bn":5.25},{"ticker":"MSFT","prior_close":389.13,"day_close":393.47,"pct_chg":1.12,"day_dollar_bn":10.41},{"ticker":"NVDA","prior_close":196.52,"day_close":196.98,"pct_chg":0.23,"day_dollar_bn":21.11},{"ticker":"TSLA","prior_close":309.24,"day_close":307.48,"pct_chg":-0.57,"day_dollar_bn":10.38}],"shape":"table","sql":"WITH per_name AS (\n    SELECT\n        ticker,\n        toFloat64(argMaxIf(close, window_start, window_start < '2026-07-28 00:00:00')) AS prior_close,\n        toFloat64(argMaxIf(close, window_start, window_start >= '2026-07-28 00:00:00')) AS day_close,\n        round(sumIf(toFloat64(close) * toFloat64(volume), window_start >= '2026-07-28 00:00:00') / 1e9, 2) AS day_dollar_bn\n    FROM global_markets.delayed_stocks_minute_aggs\n    WHERE ticker IN ('AAPL', 'AMZN', 'AVGO', 'GOOGL', 'META', 'MSFT', 'NVDA', 'TSLA')\n      AND ((window_start >= '2026-07-27 13:30:00' AND window_start < '2026-07-27 20:00:00')\n        OR (window_start >= '2026-07-28 13:30:00' AND window_start < '2026-07-28 20:00:00'))\n    GROUP BY ticker\n)\nSELECT\n    ticker,\n    round(prior_close, 2) AS prior_close,\n    round(day_close, 2) AS day_close,\n    round((day_close / prior_close - 1) * 100, 2) AS pct_chg,\n    day_dollar_bn\nFROM per_name\nORDER BY ticker","computed_at":"2026-08-01T23:43:47.613436+00:00","elapsed":0.05423578}