{"slug":"market-recap-2026-07-29","qid":"baseline_names","label":"Eight mega-caps: change vs July 28 and regular-hours dollars, July 29","post_title":"Market Recap: July 29, 2026, The Day in Numbers","post_url":"/blog/market-recap-2026-07-29#q-baseline_names","columns":["ticker","prior_close","day_close","pct_chg","day_dollar_bn"],"rows":[{"ticker":"AAPL","prior_close":340.2,"day_close":338.05,"pct_chg":-0.63,"day_dollar_bn":13.99},{"ticker":"AMZN","prior_close":230.94,"day_close":226.57,"pct_chg":-1.89,"day_dollar_bn":7.35},{"ticker":"AVGO","prior_close":380.74,"day_close":370.3,"pct_chg":-2.74,"day_dollar_bn":5.94},{"ticker":"GOOGL","prior_close":333.73,"day_close":336.67,"pct_chg":0.88,"day_dollar_bn":7.44},{"ticker":"META","prior_close":593.66,"day_close":587,"pct_chg":-1.12,"day_dollar_bn":7.64},{"ticker":"MSFT","prior_close":393.47,"day_close":392.4,"pct_chg":-0.27,"day_dollar_bn":13.09},{"ticker":"NVDA","prior_close":196.98,"day_close":190.07,"pct_chg":-3.51,"day_dollar_bn":22.26},{"ticker":"TSLA","prior_close":307.48,"day_close":298.35,"pct_chg":-2.97,"day_dollar_bn":10.22}],"shape":"table","sql":"WITH per_name AS (\n    SELECT\n        ticker,\n        toFloat64(argMaxIf(close, window_start, window_start < '2026-07-29 00:00:00')) AS prior_close,\n        toFloat64(argMaxIf(close, window_start, window_start >= '2026-07-29 00:00:00')) AS day_close,\n        round(sumIf(toFloat64(close) * toFloat64(volume), window_start >= '2026-07-29 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-28 13:30:00' AND window_start < '2026-07-28 20:00:00')\n        OR (window_start >= '2026-07-29 13:30:00' AND window_start < '2026-07-29 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-01T22:47:33.405655+00:00","elapsed":0.002826394}