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
As the apparent conclusion of the debt ceiling debate in Washington D.C. on Thursday, 17 October 2013, the largest source of noise negatively affecting stock prices dissipated. Investors, who had been anticipating the conclusion of the noise event since Wednesday, 16 October 2013, rapidly bid up the value of the S&P 500 through the end of the week, reaching an all-time record high of 1744.50 on a gain of 46.44 points in just those three days.
In the absence of that noise, or any new negative noise events that may be brewing out there, we can expect the change in the growth rate of stock prices to once again move to keep pace with the change in the growth rate of dividends expected to be paid in 2014-Q1, which is where investors have largely been maintaining their forward-looking focus in setting their expectations outside of other noise events. The chart below shows where stock prices are and where they're going:
In terms of what that means for stock prices, we would expect to see the S&P 500 generally rise in the near term to converge with the 1800 level, after which the growth pace of stock prices will flatten out on average by comparison. Assuming, of course, no new noise events to distract investors!
Speaking of which, from Friday, 11 October 2013 through Thursday, 17 October 2013, we had the equivalent of a noise event appear in the CBOE's data for 2013-Q4's dividend futures (ticker symbol DVDE), to which we've specifically pointed in this week's edition of our chart. Here, we saw the amount of expected cash dividends to be paid out by the end of December 2013 rise from $9.147 per share to $11.32 per share in a single day.
More remarkably, it held that level, and even spiked up to $11.55 per share on Thursday, 17 October 2013, before dropping back down to more reality-based $9.154 per share on Friday, 18 October 2013!
During that week-long anomaly, there was no news indicating any massive spike in increased dividend announcements or even for any special or extra dividend payments, not that these latter payments should even affect the expected dividends per share number, which is supposed to be based upon regular dividends. And it didn't show up in IndexArb's bottoms-up dividend futures data, which proves to serve as a very useful reality check on the CBOE's more volatile data.
All in all, the magnitude and duration of the anomaly is evidence that the stock market isn't necessarily as efficient as some might like to believe.
Labels: chaos, dividends, SP 500
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.