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 highest year-over-year inflation since 1982 has resolved a question we had about investor expectations for the S&P 500 (Index: SPX).
We had been debating whether the sharp decline in U.S. stock prices after Federal Reserve Chair Jerome Powell spoke marked a significant shift in how investors weight the future or if it was a noisy outlier event in a longer established trend. The news of the past week however has resolved the question by giving us enough additional data points: it was a noisy outlier event.
We're able to make that determination because the trajectory of the S&P 500 during the past week has closely tracked the alternate trajectories associated with investors focusing on either 2022-Q1 or 2022-Q2 according to how they would be set if the trend established since 16 June 2021 has remained intact. The following chart reveals the close correlation that has developed:
As you can see however, we've now reached a point where we have a very different challenge to sort out. Since the dividend futures-based model behind these trajectories uses historic stock prices as the base reference points from which its projections of the future are made, its accuracy is affected by the "echoes" of past volatility in stock prices. We've added the redzone forecast range to this chart to compensate for that effect, which assumes investors will continue focusing on the upcoming two quarters of 2022-Q1 and Q2 through the end of March 2022, which makes sense given the likely timing and uncertainty associated with the Fed's upcoming rate hikes to deal with President Biden's inflation.
Here's our wrap-up of the past week's market moving headlines:
As of the close of trading on 11 February 2022, the CME Group's FedWatch Tool projects a half-point rate hike in March 2022 (2022-Q1), followed by quarter point rate hikes in May 2022 (2022-Q2), June 2022 (2022-Q2), July 2022 (2022-Q3), September 2022 (2022-Q3) and December (2022-Q4). If you weren't counting, that's six rate hikes in 2022.
On a more positive note, the Atlanta Fed's GDPNow tool shows real GDP growth of 0.7% for the current first quarter of 2022 (as of 9 February 2022), thanks largely to updated wholesale trade data.
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.