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
Two weeks ago, the S&P 500 (Index: SPX) fell because investors believed the prospect of the Fed cutting rates in the first quarter of 2020 had been taken off the table as the chances the Fed would cut rates during the fourth quarter of the current year became an even money bet.
What a difference a week makes. By the end of the first week of October 2019, not only had the odds of a quarter point rate cut in 2019-Q4 almost been locked in, the probability of another quarter point rate cut in 2020-Q1 was back in play. Here's a snapshot of those rate cut probabilities as given by the CME Group's FedWatch Tool at the close of trading on Friday, 4 October 2019:
Given the math behind how stock prices work, that shift in the forward-looking focus of investors was accompanied by a rebound in stock prices off their lows for the week.
We find the level of the S&P 500 is now consistent with investors splitting their attention between 2019-Q4 and 2020-Q1, as hypothesized. In the chart above, the level of the S&P 500 is close to the trajectory coinciding with investors focusing on 2020-Q3, but we find no evidence in the flow of news for the week that investors are focusing any part of their attention on that very distant future quarter. Logically, because investors have been alternately shifting their attention back and forth between 2019-Q4 and 2020-Q1 during 2019-Q3, in the absence of any evidence supporting a shift in focus toward 2020-Q3, it makes more sense that the shifts between 2019-Q4 and 2020-Q1 has continued.
It certainly isn't for a lack of looking for evidence supporting a shift in attention toward 2020-Q3 on our part. Here are the market moving headlines we identified during the first week of October 2019, where we find lots of evidence in support of the investors looking at either 2019-Q4 or 2020-Q1, but not any further into the future.
Elsewhere, Barry Ritholtz extracted six positives and six negatives from the past week's economics and market-related news, where unicorns made both sides of the ledger!
As a bonus, Barry also interviewed Robert Shiller for his Masters In Business podcast on Bloomberg, where he cited Shiller's seminal 1981 paper "Do Stock Prices Move Too Much to Be Justified by Subsequent Changes in Dividends?". It's pretty amazing how far we've come in the last 38 years, where in 1981, Shiller didn't have access to dividend futures and thus couldn't quantify the volatility that arises from investors rationally shifting the time horizon in which they make their current day investing decisions between different points of time in the future, which to Shiller, seemed like irrational behavior.
Next week, we'll roll our spaghetti forecast chart of the quantum trajectories the S&P 500 might take depending upon which point in the future investors fix their attention upon forward through the end of the fourth quarter of 2019. For this edition of our S&P 500 chaos series, it made sense to look backward at 2019-Q3 one last time....
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.