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
The S&P 500 (Index: SPX) set a new record high of 6,890.89 on Tuesday, 28 October 2025 following a new trade truce between the U.S. and China over the weekend and big deals and earnings among AI companies on Tuesday. Unfortunately, that new record high came the day before the Fed cut U.S. interest rates and Federal Reserve Chair Jerome Powell said some things that upset investor expectations. The index went into retreat, ending the week at 6,840.20, up just 0.7% from the previous week's close.
After the Fed reduced the Federal Funds Rate by a quarter percent to a target range of 3.75-4.00%, the CME Group's FedWatch Tool projects one more quarter point cut to this base interest rate in 2025. That rate cut is still expected on 10 December (2025-Q4), even though Fed Chair Jerome Powell tried to cast doubt on whether the Fed will follow through with another interest rate reduction before the end of the year. The FedWatch tool captured that change in expectation by lowering the probability of a December rate cut from more than 90% to 63%.
In 2026, the FedWatch tool anticipates better than 50% probabilities for quarter point rate cuts on 29 April (2026-Q2) and 16 September (2026-Q3), though the potential timing of these rate cuts has become very fluid in response to Fed Chair Powell's comments.
The net effect of Powell's statements has been to keep investors focused on the current quarter of 2025-Q4 in setting current day stock prices. The latest update of the alternative futures chart shows the S&P 500's trajectory pacing the projection associated with investors focusing their forward-looking attention on 2025-Q4.
That's not much different than the projection for 2026-Q3, but the context provided by the market-moving headlines that communicate the now open question of whether the Fed will act to cut rates again in December 2025 sets the expectations associated with 2025-Q4 as predominant.
Despite many economic data reports remaining on hold because of the Senate Democrats' ongoing refusal to fund government operations, the Atlanta Fed's GDPNow tool's projection of real GDP growth in the U.S. during the recently ended 2025-Q3 ticked up to +3.9% because of positive existing home sales data, which comes from private sector sources. The BEA's first official estimate of GDP for 2025-Q3 however remains on hold.
Image credit: Microsoft Copilot Designer. Prompt: "An editorial cartoon of a Wall Street bull and bear who are getting tired of Federal Reserve officials playing a game of keep away with them for interest rate cuts".
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.