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 2021 continued the strong environment of the last few months for the U.S. stock market's dividend payers.
The easiest way we've found to measure the relative health of the U.S. stock market is to simply count the number of dividend cuts each month. Since 2012, with the arrival of a large number of variable dividend payers, we've found that if the number of dividend cuts and omissions is below 50 per month, the business environment for the firms listed on the U.S. stock market can be considered relatively healthy. If the monthly number of dividend cut declarations rises above 50, that's a very good indication that recessionary conditions are present within the U.S. economy. We can then can identify which industries are seeing the most distress during those periods by seeing which companies are announcing dividend cuts.
With that threshold in mind, we're now seeing perhaps the strongest environment for dividend paying stocks in the last 10 years, as defined by the relative absence of dividend cuts.
Here's the rest of May 2021's dividend metadata, complete with comparison to April 2021 and the year-over-year change from May 2020, which marked the bottom of the coronavirus recession for dividend cuts.
Our sampling of dividend cuts from our real-time sources of dividend declarations for May 2021 captured 67% of all the cuts announced during the month. Which is to say four of the six:
We note that two of the four in our sample are oil royalty trusts that pay variable dividends from month to month, which falls well within the typical level of noise we see for these firms during periods of relative health for the U.S. economy. In this case, that comparative health is driven mainly by the lifting of coronavirus pandemic lockdown mandates in much of the country.
Update 6 June 2021: A reader alerts us the article reporting a 75% dividend cut for Mosaic (also linked above) is in error. We've confirmed that Mosaic increased its regular dividend from its previous level of $0.050 per share to $0.075 per share in June 2021.
Standard and Poor. S&P Market Attributes Web File. [Excel Spreadsheet]. 28 May 2021.
Seeking Alpha Market Currents. Filtered for Dividends. [Online Database].
Wall Street Journal. Dividend Declarations. [Online Database when searched on the Internet Archive].
Labels: 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.