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
The first quarter of 2022 has come to a close, with the U.S. stock market's dividend-paying companies turning in a very strong performance. At the same time, there are signs of increasing distress in some quarters of the market, though that distress remains well below the threshold indicating recessionary conditions are present in the U.S. economy.
The following chart visualizes the count of U.S. firms either increasing or decreasing their dividends in each quarter from the first quarter of 2021 (2021-Q1) through the just completed first quarter of 2022 (2022-Q1).
During 2022-Q1, 718 publicly traded dividend paying firms announced they would increase their dividend payouts to their shareholding owners, which is both 92 more than 2021-Q1's total of 626 and the most since 2018-Q1's 807. At the same time, the number of companies announcing dividend cuts crept up for the second quarter in a row, rising to 71, which is greater than the number of companies cutting dividends in the first quarter of the previous year, the most since the Coronavirus Recession bottomed in the second quarter of 2020.
Looking just at March 2022, we find the both the month's totals for dividend rises and reductions are rising, as shown in our second chart, which visualizes these numbers going back to January 2004:
Let's get under the hood with March 2022's metadata, which records the number of dividend declarations, special dividends, increases, decreases, and omissions, along with their month-over-month and year-over-year comparisons:
Because we're seeing a rising number of dividend cuts, we've pulled a sample of 25 firms whose dividend cut announcements we tracked during the first quarter of 2022 to get a sense of which industrial sectors are coming under earnings pressure. Here's the list:
In the sample, which represents just 35% of 2022-Q1's total number of reported dividend reductions, we find 11 firms from the oil and gas sector, mainly royalty trusts that pay variable dividends on a monthly basis, which is why some appear on the list twice. While these firms' revenues benefit from the rising global price for oil, they also face rising costs for capital expenditures from constrained supply chains, pinching their margins. The next biggest category for dividend cutters are the four Real Estate Investment Trusts (REITs) in the sample, which is heavily represented by mortgage REITs. These firms are negatively impacted by rising interest rates, where we anticipate seeing more firms from this category in the months ahead.
The biggest dividend cut in the sample is for AT&T (NYSE: T) that is related to the telecom's sale of its WarnerMedia unit to Discovery (NASDAQ: DISCB), which does not pay a dividend. Standard & Poor reports the change in corporate ownership reduced the S&P 500's quarterly dividend for 2022-Q1 by $0.82 per share.
Standard and Poor. S&P Market Attributes Web File. [Excel Spreadsheet]. Accessed 1 April 2022.
Standard and Poor. S&P Indicated Rate Change. [Excel Spreadsheet]. Accessed 1 April 2022.
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.