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) came close to reaching and surpassing its two-year old record high of 4,796.56 from 3 Janary 2022 in the final weeks of 2023. Alas, the index fell short and closed out 2023 at 4,769.83, just 0.56% shy of setting a new record.
That's close enough for the S&P 500 to reach a new high on absolutely no news with little more than typical day-to-day volatility. Then again, that's all it took for the 505 component stocks that make up the S&P 500 to top out at its old record on the first trading day of 2022 before beginning its descent into a prolonged bear market on the prospects of rising interest rates.
Stock prices have since nearly recovered to their old record high on the strength of a rally that began in late-October 2023 after investors determined the Federal Reserve had reached the end of the series of rate hikes it began in March 2022. Now, the CME Group's FedWatch Tool indicates investors are not anticipating the Fed will hold the Federal Funds Rate steady in a target range of 5.25-5.50% until 20 March 2023 (2024-Q1), when the Fed is expected to start a series of quarter point rate cuts at six-to-twelve-week intervals through the end of 2024.
These strengthening future expectations were enough to deliver an old-fashioned Santa Claus rally at the end of 2023, which more or less ran out of steam in the final days of the year. The latest update of the alternative futures chart shows the whole rally through the final trading day of 2023.
There was very little new information for investors to absorb during the final trading weeks of 2023. Here is what passes for the market-moving news headlines during that time.
Starting from a projected +2.6% annualized growth rate on 15 December 2023, the Atlanta Fed's GDPNow tool's estimate of real GDP growth for the current quarter of 2023-Q4 dipped to +2.3%, where it held throughout the Christmas-through-New Year’s holidays. The Atlanta Fed's projections for GDP growth in the final quarter of 2023 will continue until they are replaced by the BEA's initial estimate of that growth at the end of January 2024.
In the next edition of the S&P 500 chaos series, we'll roll the alternative futures chart forward to provide a glimpse of what to expect for stock prices throughout the first quarter of 2024.
Image credit: Stable Diffusion Dreamstudio Beta. Prompt: "A bull runs toward a finish line ribbon, but doesn't reach the end. Digital art concept, 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.