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) rebounded in the pre-Thanksgiving holiday week of trading. The index rose 1.7% from where it ended the previous week, closing at 5,969.34 on Friday, 22 November 2024.
The biggest driver of stock prices continues to be expectations for how the Federal Reserve will be setting interest rates in 2025. The CME Group's FedWatch Tool continues to anticipate the Fed will reduce the Federal Funds Rate by 0.25% when its Federal Open Market Committee concludes a two day meeting on 18 December 2024. More significantly, the FedWatch tool's projections for all of 2025 indicate just one more rate cut is expected, a quarter point reduction on 18 June (2025-Q2). The tool expects the Federal Funds Rate will bottom at a target range of 4.00-4.25%.
Since that single rate cut now expected in 2025 would take place in 2025-Q2, that explains why investors are focusing on that distant future quarter as they set current day stock prices. The latest update of the alternative futures chart shows the trajectory of the S&P 500 just below the bottom of the range that we would expect to most likely find it for when investors focus their forward looking attention on 2025-Q2.
Since the alternative futures are projected to dip below where the S&P 500 is currently positioned in the week ahead, we can argue the market regime that has been in place since 9 March 2023 is still holding. We're still keeping an eye out for indications of a change in market regime.
With the Thanksgiving Day holiday weekend coming up, we anticipate a slow flow of market moving news in the week ahead. 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 ticked up to +2.6% from the previous week's +2.5%.
On a programming note, we're going to break away for our annual celebration of the Thanksgiving holiday this week. The next edition of our
Image credit: Microsoft Copilot Designer. Prompt: "An editorial cartoon with a Wall Street bull and a bear playing basketball, with the bull rebounding". We have to admit the AI did a great job with the bull. As for the bear, with how good the bull came out, we can only assume that AI believes bears are bad at basketball.
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.