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
After weeks of hovering within easy striking distance of its old record high close, the S&P 500 (Index: SPX) finally broke through and set a new record! The index reached its new record on Friday, 21 January 2024, closing out the trading week at 4,839.81. The new record is almost 1.2% higher than where it closed the previous week and is 0.9% higher than the old record of 4,796.56 that had been set over two years earlier on 3 January 2022.
The record was broken as investors may have shifted their forward-looking focus from 2024-Q1 to the more distant future quarter of 2024-Q2. This change would coincide with changes in the expected timing for when the U.S. Federal Reserve will begin cutting interest rates. If so, the jump in stock prices accompanying the change in expectations would qualify as a Lévy flight event for the dividend futures-based model, but we'll need another week to verify if that is indeed what happened.
Speaking of changes in expectations, the CME Group's FedWatch Tool’s updated projections indicate investors now anticipate the Fed will hold the Federal Funds Rate steady in a target range of 5.25-5.50% until 1 May 2024 (2024-Q2), six weeks later than projected last week. This date marks the expected beginning of a series of quarter point rate cuts at six-to-twelve-week intervals through the end of 2024.
These changes occurred as the last redzone forecast period of the dividend futures-based model's alternative futures chart came to an end. Based on what the latest update to the chart suggests, there would seem to be upside potential for the S&P 500 to continue setting new record highs in the short term. That's because the chart indicates investors were focusing on 2024-Q1 through the end of the trading week, where the alternative trajectory the S&P 500 would follow as investors focus on 2024-Q2 is higher.
The downside to focusing on 2024-Q2 is that investors will only hold their attention on this quarter until they have reason to shift their attention to another point of time in the future, which can happen with little warning. How stock prices might change also depends upon how investors expect the growth rate of trailing year dividends per share will change for the future quarters on which they might focus their attention.
For example, if investors were to suddenly shift their attention to the even more distant future quarter of 2024-Q3, this hypothetical Lévy flight event would be accompanied by a downward shift in the S&P 500's trajectory.
What would cause such a change? It will happen in response to the random onset of new information, much like what can be seen to have happened with the market-moving headlines during the holiday-shortened trading week that was:
The Atlanta Fed's GDPNow tool's final nowcast estimate of real GDP growth for 2023-Q4 was +2.4%, up slightly from last week's +2.2% growth estimate. The BEA's initial estimate of that growth during 2023-Q4 will be released on Thursday, 25 January 2024. The Atlanta Fed's nowcast of the GDP growth rate of the current quarter of 2024-Q1 will begin on Friday, 26 January 2024.
Image credit: Microsoft Bing Image Creator. Prompt: "A fireworks celebration on Wall Street after the S&P 500 closes at a new record high value. Highly detailed, photo realistic, 4k."
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.