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 S&P 500 and, by extension, the entire U.S. stock market, was about as boring as boring could be in Week 4 of July 2017.
How boring was the week? Well, when you consider that the week's biggest event for market volatility occurred on Thursday, 27 July 2017 when, in the space of 30 minutes after lunch on the east coast, the S&P 500 lost 0.5% of its value (about 12 points), before going back to recover most of it by the market's close, ending the day at 2475.42, less than two and a half points below where it opened.
That's apparently what constitutes a market freakout in what has been this summer's low volatility environment. But that got us thinking - how much would stock prices have to change from where they are at today to constitute a legitimate freakout session?
The answer is revealed in the following chart, where we're plotted the daily closing value of the S&P 500 against its trailing year dividends per share.
In this chart, what matters most is the relative period of order that has existed since 30 March 2016, where we find that with respect to the mean trend curve for the relationship between stock prices and trailing year dividends per share, we find that the S&P 500 is just under the middle of the range that we would expect it to be. If reversion to the mean means anything for the stock market, that's the mean the market would be reverting to in its current state of order.
It would only be if stock prices were to move outside the red-dashed curves that we would become concerned about the potential a breakdown in the current period of order, which given where the S&P 500 closed on Friday, 28 July 2017 at 2421.10, would either mean a decline of nearly 100 points or an increase of more than 100 points.
As a general rule of thumb, we would only really get interested in the daily action of the S&P 500 when it changes by more than 2% of its previous day's closing value (about 50 points in today's market). A more significant threshold would be if the stock prices were to alter their trajectory by two standard deviations, or 66 points for today's market.
So that's where we're at. We'll close out this bit of analysis by looking into the future for the S&P 500, which is pretty much behaving almost exactly like we anticipated last week.
We believe that investors are focusing on 2018-Q1 in setting stock prices, which continues to be consistent with investor expectations for the timing of the next Fed rate hike.
Here are the headlines that caught our attention during the fourth week of July 2017.
Meanwhile, Barry Ritholtz covered the positives and negatives for the U.S. economy and markets. And speaking of Barry, he took part in a Freakonomics' podcast with Ken French, Gene Fama and John Bogle on the topic of "stupidest thing you can do with your money" and is also featured in Meb Faber's new book, The Best Investment Writing, Volume 1!
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.