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
June 2016 saw the number of U.S. firms announcing dividend cuts exceed the number of U.S. firms announcing dividend increases for the first time since the end of the Great Recession and also for the fifth time in all the 150 months for which Standard and Poor has published data.
We sampled a portion of all the dividend cuts announced throughout the second quarter of 2016 (2016-Q2) in order to get a better sense of which industrial sectors are now experiencing some degree of economic distress. Our sample is drawn from the detailed dividend declarations that were published by two sources: Seeking Alpha and the Wall Street Journal, in which we excluded the dividend cuts declared by foreign firms, Exchange Traded Funds (ETF) and also for preferred stocks, giving us a sample of 61 cuts in ordinary dividends. The chart below reveals how the sampled dividend cuts announced in 2016-Q2 were distributed by industrial sector within the U.S.
As it has for the past year and a half, the U.S. oil industry accounted for the largest share of firms announcing dividend cuts, at 25. Combined with the natural gas production industry, the total number of dividend cuts in these closely related industries added up to 29 for the quarter, or 47.5% of the total.
Unlike the past year and a half, that represents an improvement for the oil and gas sector of the U.S. economy, in that 2016-Q2 saw these industries' share of all dividend cuts drop below the 50% level. This improvement is attributable to the rise in oil and gas prices during 2016-Q2, which has boosted the revenues of these firms and decreased the pressure for them to further decrease their dividend payments to their shareholding investor owners.
More significant however is the widening spread of economic distress in other industrial sectors of the U.S. economy. Led by financial and banking firms, which accounted for 11 of the cuts in our sample, and followed by mortgage-related Real Estate Investment Trusts (REIT), which added another 6 dividend cuts to the total in our sample, these dividend cuts reflect the recent policy stance communicated by the U.S. Federal Reserve in favor of hiking short-term U.S. interest rates, which put increased stress on firms whose net income is highly sensitive to interest rate levels.
Beyond that, we see also see the widening of distress in the increased number of firms in other industries, including chemical production, mining and information technology, and to a smaller extent to firms in the manufacturing, shipping, consumer goods, education and utility sectors of the U.S. economy.
Looking next at the pace at which these dividend cuts were announced during the past quarter, we see that 2016-Q2 was worse than the year ago quarter of 2015-Q2:
While worse than the year ago quarter of 2015-Q2, the pace of dividend cuts during 2016-Q2 was slower than what we saw just one quarter ago in 2016-Q1, which was the worst quarter for dividend cuts since the end of the Great Recession in June 2009.
Standard & Poor. Monthly Dividend Action Report. [Excel Spreadsheet]. Accessed 1 July 2016.
Seeking Alpha Market Currents Dividend News. [Online Database]. Accessed 1 July 2016.
Wall Street Journal. Dividend Declarations. [Online Database]. Accessed 1 July 2016.
Labels: data visualization, dividends
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.