to your HTML Add class="sortable" to any table you'd like to make sortable Click on the headers to sort Thanks to many, many people for contributions and suggestions. Licenced as X11: http://www.kryogenix.org/code/browser/licence.html This basically means: do what you want with it. */ var stIsIE = /*@cc_on!@*/false; sorttable = { init: function() { // quit if this function has already been called if (arguments.callee.done) return; // flag this function so we don't do the same thing twice arguments.callee.done = true; // kill the timer if (_timer) clearInterval(_timer); if (!document.createElement || !document.getElementsByTagName) return; sorttable.DATE_RE = /^(\d\d?)[\/\.-](\d\d?)[\/\.-]((\d\d)?\d\d)$/; forEach(document.getElementsByTagName('table'), function(table) { if (table.className.search(/\bsortable\b/) != -1) { sorttable.makeSortable(table); } }); }, makeSortable: function(table) { if (table.getElementsByTagName('thead').length == 0) { // table doesn't have a tHead. Since it should have, create one and // put the first table row in it. the = document.createElement('thead'); the.appendChild(table.rows[0]); table.insertBefore(the,table.firstChild); } // Safari doesn't support table.tHead, sigh if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0]; if (table.tHead.rows.length != 1) return; // can't cope with two header rows // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as // "total" rows, for example). This is B&R, since what you're supposed // to do is put them in a tfoot. So, if there are sortbottom rows, // for backwards compatibility, move them to tfoot (creating it if needed). sortbottomrows = []; for (var i=0; i
On Thanksgiving holiday week, the S&P 500 (Index: SPX) rose 1.7% from its previous week's close, reaching 6,849.09 by the close of trading on Friday, 28 November 2025.
The index' gains was largely driven by growing expectations the U.S. Federal Reserve will act to cut the Federal Funds Rate when its Federal Open Market Committee concludes a two-day meeting on Tuesday, 10 December 2025, overcoming the opposition of the FOMC's biggest grumps who lost face during the year by predicting much higher inflation would result from tariffs than is supported by real world evidence. Through Friday, 28 November 2025, the CME Group's FedWatch Tool indicates an 87% probability of a quarter point rate cut on 10 December (2025-Q4), up from 71% a week earlier and from 44% the week before that.
In 2026, the FedWatch tool gives better than even odds for additional quarter point rate cuts on 29 April (2026-Q2), 29 July (2026-Q3), and 9 December (2026-Q4), which is unchanged from the previous week.
This growing expectation puts the S&P 500's trajectory will within the redzone forecast range we added to the alternative futures chart in the previous edition of the S&P 500 chaos series. Here's the latest update of the chart:
The other major story that's been driving the direction of the S&P 500 index during 2025 was relatively quiet during the Thanksgiving holiday-shortened trading week. However, what happens with firms making big AI technology-related investments continues to affect the market's direction, which in the past week meant providing the biggest boost to the markets' major indices. Here are the market-moving headlines from the week that was.
It's hard to believe OpenAI's ChatGPT has only been around for three years!
Meanwhile, the Atlanta Fed's GDPNow tool projection of real GDP growth in the U.S. during the recently ended 2025-Q3 decreased from +4.2% to +3.9% as economic data reports resume being reported following the end of the Senate Democrats' government shutdown fiasco. The BEA's official estimates of GDP for 2025-Q3 will likely be delayed into December 2025, which may happen around the time the GDPNow tool gets enough data to finally shift forward to 2025-Q4.
Image credit: Microsoft Copilot Designer. Prompt: "An editorial cartoon of a Wall Street bull who is being served a Thanksgiving turkey that says 'DECEMBER RATE CUT' by a grumpy Federal Reserve official".
Welcome to the blogosphere's toolchest! Here, unlike other blogs dedicated to analyzing current events, we create easy-to-use, simple tools to do the math related to them so you can get in on the action too! If you would like to learn more about these tools, or if you would like to contribute ideas to develop for this blog, please e-mail us at:
ironman at politicalcalculations
Thanks in advance!
Closing values for previous trading day.
This site is primarily powered by:
The tools on this site are built using JavaScript. If you would like to learn more, one of the best free resources on the web is available at W3Schools.com.