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 several weeks of volatility, the S&P 500 (Index: SPX) settled down during the second week of June 2019, as might be expected for when investors are focusing their forward-looking attention on the distant future quarter of 2020-Q1.
The reason they're doing that is because they are currently betting on the Fed cut U.S. interest rates three times between now and the end of that quarter: a quarter point cut coming soon in 2019-Q3, possibly as early as July, with at least one an possibly another two quarter point rate cuts by the end of 2019-Q4. The following snapshot from the CME Group's FedWatch Tool reveals these current expectations:
At this time, we think stock market investors are betting that third quarter point rate cut would more realistically happen in 2020-Q1 - if they anticipated that it was on tap for 2019-Q4, we would see stock prices decline sharply from their current level, similar to what happened in May 2019.
Speaking of which, if you've been following our S&P 500 chaos series over the past several weeks, you'll be very familiar with all the shifts in how far investors are looking into the future that have driven the recent volatility in stock prices.
We're just happy that it was a much quieter week with Fed officials having entered their communication blackout period ahead of the Federal Open Market Committee's upcoming two-day meeting on 18-19 June 2019 - the quiet before the storm for investors, so to speak, where investors kept their focus on 2020-Q1 because there wasn't any news to prompt them to shift their attention toward a different point of time in the future to continue driving more volatility into stock prices. Here are the headlines we picked out from the flow of news during the last week.
But wait, there's more! Barry Ritholtz counted 6 positives and 6 negatives in his review of the week's major economic and market-related news.
Otherwise, sharp eyed readers will recognize that we've added some additional vertical bands to the right hand side of the S&P 500 alternative futures "spaghetti" forecast chart above, when compared to previous versions. Because the dividend futures-based model behind this chart uses historic stock prices from 13 months, 12 months and 1 month earlier as the base reference points from which it makes its projections into the future, these vertical bands indicate the periods where the echo of past volatility in stock prices will affect the accuracy of its projections of the future. This is a direct consequence of the volatility the S&P 500 began to experience during May 2019, where the upcoming echo will lead our model's projections to undershoot the likely trajectory of the S&P 500, assuming investors remain focused on 2020-Q1.
With investors shifting their attention backwards and forwards in time frequently during the last month however, who knows how long that assumption might hold?
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.