{"slug":"market-recap-2026-07-30","qid":"baseline_names","label":"Eight mega-caps: change vs July 29 and regular-hours dollars, July 30","post_title":"Market Recap: July 30, 2026, The Day in Numbers","post_url":"/blog/market-recap-2026-07-30#q-baseline_names","columns":["ticker","prior_close","day_close","pct_chg","day_dollar_bn"],"rows":[{"ticker":"AAPL","prior_close":338.05,"day_close":333.86,"pct_chg":-1.24,"day_dollar_bn":14.47},{"ticker":"AMZN","prior_close":226.57,"day_close":236.03,"pct_chg":4.18,"day_dollar_bn":15.35},{"ticker":"AVGO","prior_close":370.3,"day_close":388.23,"pct_chg":4.84,"day_dollar_bn":6.31},{"ticker":"GOOGL","prior_close":336.67,"day_close":333.67,"pct_chg":-0.89,"day_dollar_bn":7.8},{"ticker":"META","prior_close":587,"day_close":539.06,"pct_chg":-8.17,"day_dollar_bn":18.93},{"ticker":"MSFT","prior_close":392.4,"day_close":451.49,"pct_chg":15.06,"day_dollar_bn":42.56},{"ticker":"NVDA","prior_close":190.07,"day_close":195.15,"pct_chg":2.67,"day_dollar_bn":19.63},{"ticker":"TSLA","prior_close":298.35,"day_close":308.87,"pct_chg":3.53,"day_dollar_bn":9.7}],"shape":"table","sql":"WITH per_name AS (\n    SELECT\n        ticker,\n        toFloat64(argMaxIf(close, window_start, window_start < '2026-07-30 00:00:00')) AS prior_close,\n        toFloat64(argMaxIf(close, window_start, window_start >= '2026-07-30 00:00:00')) AS day_close,\n        round(sumIf(toFloat64(close) * toFloat64(volume), window_start >= '2026-07-30 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-29 13:30:00' AND window_start < '2026-07-29 20:00:00')\n        OR (window_start >= '2026-07-30 13:30:00' AND window_start < '2026-07-30 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:58:32.938824+00:00","elapsed":0.088662843}