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
You would think that an October that proved to be the fourth best October in U.S. stock market history in terms of the percentage gain recorded by the S&P 500, not to mention the best month for the market in the last four years, would be a month where U.S. firms are not announcing an unexpectedly increased level of dividend cuts.
You would be wrong. Going by our two sources for real-time dividend cut announcements, Seeking Alpha's Market Currents (filtered for dividends) and the WSJ's Dividend Declarations database, the first month of the fourth quarter of 2015 was keeping pace with the first months of the year's first and third quarters, all the way up until its last day of trading. And then, it unexpectedly spiked upward.
On 30 October 2015, we see that the number of U.S. firms who have announced dividend cuts jumped up into the range that is consistent with an elevated level of economic distress within the U.S. economy where there is some degree of contraction occurring.
Going by which companies have announced dividend cuts, that distress is largely concentrated within the oil and mining industries, along with a number of financial firms that have large stakes in these industries, which is largely explained by falling revenues (and profits) resulting from falling global oil prices. Even firms in these industries that have not yet announced dividend cuts are indicating that they are under increasing distress, as they are taking actions to significantly reduce their costs, including layoffs and massive cuts to their previously planned capital expenditures.
Unlike the previous month however, we haven't registered reports of dividend cuts for interest-rate sensitive firms, such as mortgage Real Estate Investment Trusts (REITs), which had increased in the latter portion of the third quarter of 2015 as interest rates were rising ahead of the Federal Reserve's planned increase in short term interest rates.
When that plan didn't happen as expected in September 2015, interest rates fell, which removed a good part of the stress on interest-rate sensitive firms. However, since the Federal Reserve has put a rate hike by the end of the year back on the table, we think that it is likely that we'll once again see these kinds of firms among dividend cutters by the end of the quarter.
The thing we want to see next is S&P's Monthly Dividend Report, which at this posting, should be updated for October 2015 sometime later today. The report is our benchmark for evaluating the near-real time health of the U.S. economy. For readers who want to get a jump on what we'll be discussing tomorrow, we've provided a link to the report with the data sources presented at the bottom of this post. [In case you're reading this article on a site that republishes our RSS news feed, which may or may not include our data references, click here to access it on our site.]
Standard & Poor. Monthly Dividend Action Report. [Excel Spreadsheet]. Accessed 30 October 2015.
Seeking Alpha Market Currents. Filtered for Dividends. [Online Database]. Accessed 30 October 2015.
Wall Street Journal. Dividend Declarations. [Online Database]. Accessed 30 October 2015.
Labels: dividends, recession, 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.