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 a week that saw it rise as high as 4,019.65, the S&P 500 (Index: SPX) ultimately dropped 2.8% from where it ended the previous week to close at 3,852.36 on Friday, 16 December 2022.
Here's the latest update to the dividend futures-based model's alternature futures chart:
Before we go any further, let's recap a short bit of our analysis from last week, which will help explain what's going on in the updated portion of the alternative futures chart:
If investors focus predominantly on 2023-Q1, the trajectory of the S&P 500 will remain within the redzone forecast range. If investors shift a larger portion of their attention further forward in time to 2023-Q2, the trajectory will drop below this indicated range.
On Wednesday, 14 December 2022, the trajectory of the S&P 500 has risen to the middle portion of the redzone forecast range, corresponding with investors mostly focusing their forward-looking attention on 2023-Q1. But that focus was very short-lived, as investors quickly shifted their forward-looking attention beyond the first quarter of 2023.
Here's what changed to prompt that shift in how far forward investors are looking. After the Fed's expected half point rate hike on 14 December 2022, news indicating developing weakness for the U.S. economy reshaped investors expectations of how the Fed will be changing interest rates in 2023. Those changes are captured by the CME Group's FedWatch Tool, which dialed back its forecast for the Fed's next rate hike from a half point to just a quarter point at its 1 February (2023-Q1) meeting. The FedWatch tool then sees just one more quarter point rate hike in March (2023-Q1), where the Federal Funds Rate would top out in the 4.75-5.00% range, below what they expected just a week earlier. Looking further forward, developing expectations for a recession in 2023 have the FedWatch tool projecting two quarter point rate cuts, the first in September (2023-Q3) and the second in December (2023-Q4).
Based on this information, through Friday, 16 December 2022, we would describe the level of the S&P 500 as consistent with investors splitting their attention between 2023-Q1 and 2023-Q3. That level is coincidentally near the middle of where we might sketch a new redzone forecast range on the chart to indicate where the S&P 500 would be if investors were closely focused on 2023-Q2.
Here are the week's market-moving headlines:
The Atlanta Fed's GDPNow tool's projection for real GDP growth in the current quarter of 2022-Q4 dropped back to +2.8% from last week's +3.2% estimate. The "Blue Chip consensus" still projects over 1% real economic growth for the current quarter of 2022-Q4.
This is the last post in our S&P 500 chaos series for 2022. We'll be back in the first week of Janaury 2023 to recap the final two trading weeks of 2022, where the big question we have going into those final weeks is whether there will be one or two more Lévy flight events to end the volatile year of trading.
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.