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) definitively broke through the 6,000 level on Monday, 8 November 2024, closing at an all-time record high of 6,001.35 that day.
Unfortunately, by the end of the week, the index fell by 2.2% from that new high to end the week at 5,870.62.
The precipitating event for that drop came on Thursday, 14 November 2024 as Federal Reserve Chair Jerome Powell stated that he saw no need to rush interest rate cuts. That was followed up by similar statements by other Fed officials.
In response to that new information, investors dialed back their expectations for future rate cuts. The CME Group's FedWatch Tool still anticipates a 0.25% cut in the Federal Funds Rate the Fed controls on 18 December 2024, but the odds dropped from a near lock a week earlier to a 62% probability this week. The FedWatch Tool also projects another quarter point rate cut on 19 March 2025, followed by one last one on 17 September 2025, with the Federal Funds Rate bottoming at a target range of 3.75-4.00%.
The result of that change pushed the trajectory of the S&P to the bottom end of the range that would be expected for investors focusing on the distant future quarter of 2025-Q2. The latest update of the alternative futures chart captures the market's response to the news of the Fed's signaling.
The sudden change in the market's trajectory is such that we're now on the lookout for indications a new market regime is setting up. It's too early to make that determination now, but the next several weeks will be important in determining whether the market is simply responding to a short-term noise event or if something more fundamental is changing within it.
Either way, part of that determination relies on the random onset of new information. Here are the past week's market moving headlines:
The Atlanta Fed's GDPNow tool's projection of the real GDP growth rate for the current quarter of 2024-Q3 was unchanged at +2.5%.
Image credit: Microsoft Copilot Designer. Prompt: "An editorial cartoon with a sad Wall Street bull in front of a stock market chart showing a downtrend in an office, and a bear leaving the office holding a box that says 'FUTURE RATE CUTS'". We tweaked some parts of the image to convey the downward shift in the index and to properly label the bear's box.
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.