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
Thanks to the diminished level of noise in the stock market, stock prices continued to behave exactly as expected in the week ending Friday, 25 October 2013, with the S&P 500 rising by 15.27 points to close at at new all-time record high of 1759.77.
Here's what that looked like on our favorite chart, which tracks the change in the year-over-year growth rates of S&P 500 stock prices and their expected trailing year dividends per share:
In the chart, we see that the change in the year-over-year growth rate of daily stock prices for the S&P 500 is converging toward the level of expectations consistent with the change in the growth rate of dividends per share for 2014-Q1. In the relative absence of noise to affect stock prices, they should consistently be within a narrow range of that level until investors shift their forward-looking attention to a different point of time in the future. They are already very close to a level that would be consistent with "typical" levels of noise in the stock market.
If you compare this week's chart to our previous edition, you'll see that the levels for the trailing year dividends that incorporate the data for the recently closed 2013-Q3 have shifted from their previous positions. This is a result of our incorporating S&P's official data for 2013-Q3, which was $8.909 per share as of 30 September 2013, rather than the CBOE dividend future's final recorded figure from 23 September 2013 of $8.814 per share for the quarter. The difference between the two figures is likely attributable to that slight term mismatch and S&P's finalization of the weighting of the index' component dividends according to their market capitalization.
Beyond that, we also had a minor spreadsheet error for the newly added data for 2014-Q3, where we were erroneously measuring the change from 2013-Q2 instead of 2013-Q3 in calculating the expected growth rate of the trailing year dividend per share for the future quarter. That will teach us to just drag the calculation for the previous quarter out to the right in the spreadsheet when setting up the math for a new quarter for which we're first getting data!
With that error corrected, we see that except for the data for 2014-Q1, where investors have fortunately collectively focused their forward-looking attention, the data for all other quarters ending in the future are negative. That's especially true for 2013-Q4, which is a consequence of the Great Dividend Raid of 2012.
What that means is that stock prices would fall rather dramatically if investors were forced to shift their attention to other future quarters. The wild card would be for 2014-Q4, for which we don't expect to have data until around Christmastime.
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.