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
If it seems like it was just a week ago that we issued a cautionary note that the S&P 500 (Index: SPX) would face a downward movement if investors shifted their attention to any point in the future other than 2022-Q4, that's because it was.
We said it would absolutely happen before the end of 2022-Q4. But we didn't have to wait very long at all, because it happened last week. The latest update to the dividend futures-based model's alternative futures chart shows it as the twelfth Lévy flight event of 2022, as investors refocused their attention on the first quarter of 2023.
The cause of the shift was easy to find in the week's newstream. It's directly tied to changing expectations for how the Federal Reserve's Federal Open Market Committee (FOMC) will be changing the Federal Funds Rate in upcoming months. The FOMC concluded a two day meeting on Wednesday, 2 November 2022, announcing it would immediately hike interest rates by three quarters of a percent, but it was Fed Chair Jerome Powell's press conference following the announcement that prompted investors to immediately shift their expectations for the future timing of when and how high the Fed's rate hikes will top out.
The CME Group's FedWatch Tool captured the associated change in expectations for the Fed's future rate hikes. After the announcement, it continued to project a half point rate hike on 14 December (2022-Q4). But in 2023, the FedWatch tool anticipates the Federal Funds Rate rising to a target range of 5.00-5.25% in 2023-Q1 and holding at that level until a quarter point rate cut might takes place in December (2023-Q4). As would be expected, the change for how high and, more importantly, when the Fed's series of rate hikes will peak in 2023-Q1 is behind the shift of investors' time horizon from 2022-Q4 to 2023-Q1. The trading week ended with investors having focused nearly all their forward-looking attention on the first quarter of 2023, fully accounting for the amount by which the S&P 500 dropped from the previous week.
Other stuff happened too during the week, which helps provide context for the environment in which these changes happened. Here's our summary of the week's market moving headlines:
The Atlanta Fed's GDPNow tool's projection for real GDP growth in 2022-Q4 is +3.6%, up from its estimate of +3.1% at the end of the previous trading week. There's a big gap between its current projection and the so-called "Blue Chip consensus", which anticipates near zero growth in 2022-Q4. We'll see how these economic growth projections evolve during the rest of the quarter.
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.