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
Now that we're just past the halfway point for the third quarter of 2017, let's take a quick look to see how the pace of dividend cuts in 2017-Q3 compares with the year-ago quarter of 2016-Q3. The following chart shows the data we compiled for both periods from Seeking Alpha's Dividend News resource and the Wall Street Journal's Dividend Declarations database.
Compared to the third quarter of 2016, the pace of dividend cuts in the third quarter of 2017 are slightly ahead of the pace set a year ago, with the current level being consistent with recessionary conditions being present within the U.S. economy.
Looking to see which companies among the 26 that have announced dividend cuts at this point of 2017-Q3 can tell us where those recessionary conditions might be found, where we find a strong concentration in two industries of the U.S. economy: the oil and gas production sector with 19, and the financial industry with 6, although most of these are firms with significant real estate holdings, such as Real Estate Investment Trusts (REITs).
If you're doing the math at home, the dividend cuts announced in those two industries add up to 25. The remaining firm in our sample is gun manufacturer Sturm Ruger (NYSE: RGR), which reflects the decline in U.S. gun sales since President Obama's exit from office, which has also negatively impacted sporting goods retailers.
Considering the elephant in the room however, we can identify the decline oil prices during 2017 as the primary contributing factor to the increase in distress in the U.S. oil and gas industry, where sustained crude oil prices below $50 per barrel have been putting that industry's margins under pressure.
As for the REITs, the Federal Reserve's series of interest rate increases since November 2016 would appear to be pinching the profit margins in that sector of the economy, although the exposure to distress appears limited at this time.
Finally, comparing the pace of dividend cuts in 2017-Q3 to what we observed during the first two quarters of 2017, we find that the current level of announced dividend cuts is about the same at this point of time as what we saw in both 2017-Q1 and 2017-Q2, although it had been slightly faster during the earlier part of the quarter.
Seeking Alpha Market Currents. Filtered for Dividends. [Online Database]. Accessed 16 August 2017.
Wall Street Journal. Dividend Declarations. [Online Database]. Accessed 16 August 2017.
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.