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 trading week ending Friday, 13 September 2024 saw the S&P 500 (Index: SPX) rise 4.0% above its previous week's close. The index ended the week at a level of 5,626.02, almost erasing the previous week's decline.
During the past week, there was one overarching factor that influenced investor expectations, which ties to the Federal Reserve's upcoming interest rate cut set to be announced on Wednesday, 18 September 2024. The answer to the question "how big will the cut be?"
Going into the week, there were very high odds the Federal Reserve would enact a quarter point reduction in the Federal Funds Rate. But that changed. By Friday, 13 September 2024, the CME Group's FedWatch Tool projects a 56% probability the first cut will be 0.25% and a 44% chance it will be 0.50%.
For the dividend futures-based model, that certainty there will be a cut, the new uncertainty of its size, and speculation over what will come after has led investors to shift their forward-looking focus from 2024-Q3 outward to the more distant future quarters of 2024-Q4 and 2025-Q1 ahead of the Fed's announcement.
At least, that's how we interpret what the latest update to the alternative futures chart shows. We find the trajectory of the S&P 500 is consistent with investors focusing their forward-looking attention on either 2024-Q4 or 2025-Q1.
Looking over the market moving headlines of the trading week ending 13 September 2024, we do find something remarkable. Before Friday, 13 September 2024, a push was being made to set the expectation the Fed's upcoming rate cut would be just a quarter point. While that changed on Friday, the momentum for that change has been building since the weak August 2024 jobs report was released a week earlier.
The CME Group's FedWatch Tool anticipates the Fed will hold the Federal Funds Rate steady in its current target range of 5.25-5.50% until next week. On Wednesday, 18 September (2024-Q3), the Fed is expected to start a series of 0.25%-0.50% rate cuts that will occur at six-week intervals well into 2025.
The Atlanta Fed's GDPNow tool's projection of the real GDP growth rate for the current quarter of 2024-Q3 bounced back up to +2.5% from the previous week's forecast of +2.1% growth.
Looking ahead to why the Federal Reserve will begin a new series of rate cuts later this week, on Tuesday, 17 September 2024 we'll show you some of the data the Fed is looking at as it considers whether the U.S. economy is falling into recession and on Wednesday, 18 September 2024, we'll show you the negative jobs data that may explain why a half point rate cut has become more than a remote possibility during the past week.
Image credit: Microsoft Copilot Designer. Prompt: "An editorial cartoon of two Federal Reserve officials using a Ouija board to determine interest rate cut"
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.