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
If stock prices dipped just one percent after reaching their all-time high last week, why are investors so freaked out?
The answer has to do with the sudden onset of a new noise event in the stock market, which began making its present known around 2:40 PM EDT on Wednesday, 14 May 2014. Our accelerations chart reveals the sudden downward shift of stock prices with respect to the change in the growth rate of dividends per share for each future quarter from now through 2015-Q1:
Applying what we've been learning about the nature of noise events - namely, that they really represent events where investors suddenly and temporarily shift some or all of their forward-looking focus in setting today's stock prices toward a different point of time in the future from where they had been, finding the specific mechanism that would appear to have driven the sudden shift took very little effort for us last week, thanks to an aside offered by UBS' equity and derivative strategist Julian Emanuel in a discussion with CNBC:
"As an aside, there's been some concentrated large-size sellers of June out-of-the-money (S&P 500) options—1910 and 1920 calls, and on the downside 1840 and 1850 puts," Emanuel said. "As the market goes toward either of those strike prices, the possibility for acceleration increases through the strike prices."
As we can see by each of the dividend futures in our chart above, the expectations for the future didn't meaningfully change last week. But what Emanuel's observation confirms for us is that the point of time that investors were focused upon changed. In this case, that forward-looking focus changed from 2014-Q3, where it has been for weeks, to suddenly pull back somewhat toward 2014-Q2 ("June"), corresponding to the unusually concentrated put activity.
This is very similar to what we observed for the events of 26 March 2014 in our now infamous "experiment".
The good news is that it would appear that the noise from this event has already begun to dissipate. But still, the presence of the noise has spooked a number of investors, for whom the effect of the noise has placed stock prices considerably below the level that they might have otherwise reasonably expected.
Assuming that the last noise event continues to dissipate and isn't followed by any additional new noise events, our best thinking is that stock prices will once again converge with the future as defined by the dividends expected for 2014-Q3, which would be positive for stock prices in the short term.
But in the longer term, if that convergence is sustained, it would ultimately lead stock prices lower, where it seems a reversion to the long-term mean may be in the works. More on that later this week....
Update: 20 May 2014: New York Fed President William Dudley, who had previously been considered an interest rate dove in favoring hiking rates later rather than sooner, indicated today that such hikes might now occur sooner rather than later. Other influential Fed Presidents have indicated that such an action may come as early as by the end of 2015-Q1.
If you look at our accelerations chart above, what effect do you think that shifting the focus of investors toward 2015-Q1 would have on stock prices today? P.S. - Also try to guess at what time that Dudley began speaking (hint: a minor decline from the day's mid-day peak suddenly steepens!...)
So did stock prices behave any differently on Tuesday, 20 May 2014 from what we should expect under these circumstances?
The bottom line: it's a new noise event - one following the one we described in the post above. You can thank the Fed's minions for it.
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.