{"slug":"market-recap-2026-07-27","qid":"baseline_names","label":"Eight mega-caps: change vs July 24 and regular-hours dollars, July 27","post_title":"Market Recap: July 27, 2026, The Day in Numbers","post_url":"/blog/market-recap-2026-07-27#q-baseline_names","columns":["ticker","prior_close","day_close","pct_chg","day_dollar_bn"],"rows":[{"ticker":"AAPL","prior_close":333.07,"day_close":336.92,"pct_chg":1.16,"day_dollar_bn":12.93},{"ticker":"AMZN","prior_close":232.08,"day_close":231.36,"pct_chg":-0.31,"day_dollar_bn":5.92},{"ticker":"AVGO","prior_close":381.81,"day_close":383.35,"pct_chg":0.4,"day_dollar_bn":4.71},{"ticker":"GOOGL","prior_close":319.73,"day_close":326.56,"pct_chg":2.14,"day_dollar_bn":7.59},{"ticker":"META","prior_close":595.2,"day_close":593.93,"pct_chg":-0.21,"day_dollar_bn":5.23},{"ticker":"MSFT","prior_close":381.74,"day_close":389.13,"pct_chg":1.94,"day_dollar_bn":8.83},{"ticker":"NVDA","prior_close":206.96,"day_close":196.52,"pct_chg":-5.04,"day_dollar_bn":25.42},{"ticker":"TSLA","prior_close":313,"day_close":309.24,"pct_chg":-1.2,"day_dollar_bn":11.7}],"shape":"table","sql":"WITH per_name AS (\n    SELECT\n        ticker,\n        toFloat64(argMaxIf(close, window_start, window_start < '2026-07-27 00:00:00')) AS prior_close,\n        toFloat64(argMaxIf(close, window_start, window_start >= '2026-07-27 00:00:00')) AS day_close,\n        round(sumIf(toFloat64(close) * toFloat64(volume), window_start >= '2026-07-27 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-24 13:30:00' AND window_start < '2026-07-24 20:00:00')\n        OR (window_start >= '2026-07-27 13:30:00' AND window_start < '2026-07-27 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:28:34.490733+00:00","elapsed":0.063289259}