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
Fed Chair Jerome Powell spoke from the Federal Reserve's annual retreat Jackson Hole on Friday, 26 August 2022. In doing that, he succeeded in sending the S&P 500 (Index: SPX) on its tenth confirmed Lévy flight event of 2022, sending the index down 3.37% to close the week at 4,057.66.
Since it's the tenth Lévy flight event of the year, investors are getting a lot of exposure these high volalilty episodes. For readers who are new to the concept, here's what it means:
All of which are tied together in the dividend futures-based model we invented to forecast the future for the S&P 500. The alternative futures chart tracks the actual trajectory of the index against the levels it projects it would be for when investors focus their attention upon specific future quarters.
Going into the last trading week, the chart shows investors had been focused on the future quarter of 2023-Q1 in setting current day stock prices. Fed Chair Powell's Jackson Hole speech on Friday, 26 August 2022 however refocused their attention on 2022-Q3 by increasing the uncertainty they have for how much the Fed will change interest rates at its upcoming September meetings.
Our summary of the market-moving headlines of the trading week that was documents how that shift in the forward looking focus developed during the trading week.
After Fed Chair Jerome Powell got done speaking on Friday, 26 August 2022, the CME Group's FedWatch Tool's projections of the Fed's future interest rate hikes registered big changes in investor expectations, confirming the Lévy flight event resulting from investors resetting their time horizon. Instead of a half point rate hike in September (2022-Q3), the probability of a three-quarter point hike rose over 50% as investors expectations changed for this quarter. Looking further forward in time, that hike would be followed by a half point rate hike in November (2022-Q4), after which, investors think the Fed will hold off on more rate hikes until February 2023 when they anticipate a quarter point rate hike. That will put the Fed's target for the Federal Funds Rate in the 3.75-4.00% range, which is where investors are now expecting the Fed's series of rate hikes will top out.
Meanwhile, the Atlanta Fed's GDPNow tool's forecast for real GDP growth in 2022-Q3 held steady at 1.6%, so we can rule out changes in the outlook for the U.S. economy as a significant contributing factor to what happened with stock prices during the week. What happened was caused by investors drawing in their focus from 2023-Q1 to 2022-Q3 in reaction to Powell's Jackson Hole remarks.
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.