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
May 2017 was easily the best May for U.S. stock market dividends since 2014. In terms of dividend cuts, the number of reductions rose month-over-month, but was reduced in the year-over-year measure. But what made the month was dividend increases and extra (or special) dividends, where both categories showed month-over-month and year-over-year increases.
Before we dive into the month's numbers, let's take a look at the number of increases and cuts recorded in each month since January 2004 in the following chart, which now shows a rising trend for dividend increases and a falling trend for dividend cuts.
Here is Standard and Poor's summary data for the U.S. stock market's dividends in May 2017:
Taking a closer look at the history of dividend cuts since January 2004, we find that May 2017 falls within the level where there are recessionary conditions present within the U.S. economy, but below the level where there is some degree of significant economic contraction.
Our real-time sampling of dividend cuts for May 2017 indicates that the month was rough on the oil & gas sector, where the impact of recent dips in the price of crude oil in both March 2017 and May 2017 may have shown up in May 2017's dividends for a number of monthly dividend payers in that industry.
Meanwhile, the finance sector accounted for the second most number of dividend cuts announced during the month by industry, but perhaps the most surprising was the elevated number of chemical companies, particularly those that produce agricultural fertilizer products, that announced dividend cuts during the month, which included Terra Nitrogen (NYSE: TNH), Mosaic (NYSE: MOS) and Ashland Global Holdings (NYSE: ASH).
Update: Welcome Bloomberg, Big Picture and RealClearMarkets' Off the Street fans! If you're interested in seeing more of the kind of analysis that we do here at Political Calculations, you can catch up with our latest post on the success (or lack thereof) for Philadelphia's controversial soda tax, which may have special meaning today for any readers hailing from Seattle who like sugary soft drinks!
Standard & Poor. Monthly Dividend Action Report. [Excel Spreadsheet]. Accessed 2 June 2017.
Labels: dividends, stock market
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.