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 third quarter of 2024 was both less positive and more negative for dividend paying companies than the second quarter of the year.
That seems like double-edged way of saying the quarter was worse for the U.S. stock market's dividend payers, but to just simply say it was worse would miss communicating how it was worse, which was less bad than it had the potential to be.
Maybe the best way to cut through the noise is with a picture. Our first chart presents the positives for dividend payers as the number who declared they would increase their dividends and the negatives as the number of firms who announced they would decrease them. The chart shows both increases and decreases for each of the last five quarters, spanning 2023-Q3 through the just completed 2024-Q3.
The chart shows the number of firms increasing dividends in 2024-Q3 fell with respect to the previous quarter, which is less positive. Likewise, the number of dividends decreases is more negative, as more firms announced they were reducing their dividend payouts.
At this point, these are relatively small negative changes and perhaps not much to be concerned about just yet. There is after all the bright spot of the year-over-year comparison, where things look better for both counts.
The most distressed sector in 2024-Q3 was the oil and gas industry, which outnumbered firms in other sectors. That makes sense with oil prices falling during much of the quarter as global demand has waned. That trend lowers the revenues and earnings for the firms in this sector, with dividends following suit for the companies that pay variable or hybrid dividends. Even so, with 14 dividend decreases announced by firms within the oil and gas sector, the total of these firms falls below the threshold that signals recessionary conditions within the U.S. are impacting it.
Switching to monthly data, we find September 2024 was net positive for U.S. dividend paying companies compared, with the number of favorable changes outweighing the number of negative changes. The following table summarizes Standard and Poor's dividend metadata for September 2024, comparing it both Month-over-Month (MoM) and Year-Over-Year (YoY) with previously reported data:
Dividend Changes in September 2024 | |||||
---|---|---|---|---|---|
Sep-2024 | Aug-2024 | MoM | Sep-2023 | YoY | |
Total Declarations | 4,603 | 4,105 | 498 ▲ | 4,408 | 195 ▲ |
Favorable | 136 | 188 | -52 ▼ | 99 | 37 ▲ |
- Increases | 89 | 119 | -30 ▼ | 62 | 27 ▲ |
- Special/Extra | 47 | 67 | -20 ▼ | 36 | 11 ▲ |
- Resumed | 0 | 2 | -2 ▼ | 1 | -1 ▼ |
Unfavorable | 9 | 13 | -4 ▼ | 22 | -13 ▼ |
- Decreases | 9 | 13 | -4 ▼ | 22 | -13 ▼ |
- Omitted/Passed | 0 | 0 | 0 ◀▶ | 0 | 0 ◀▶ |
Because of the seasonal pattern for dividends, in which the number of dividend actions typically decreases in the final month of the third quarter, the best comparison is the year-over-year data. Compared with September 2023, there were 37 more favorable changes announced in September 2024 and 13 fewer unfavorable changes, for a net positive of 50.
The final chart we'll present is the monthly number of dividend increases and decreases, which covers January 2004 through September 2024.
Three months ago, we noted there was potentially a bearish storm cloud developing in the U.S. stock market. Compared to 2024-Q2, it's started to arrive but may not be as bearish as its potential suggested. That's good news, and we'll take that whenever we can find it.
Standard and Poor. S&P Market Attributes Web File. [Excel Spreadsheet]. Accessed 1 October 2024.
Image Credit: Microsoft Copilot Designer. Prompt: "An editorial cartoon of a Wall Street bull and a bear looking at each other, with one of them asking 'What was that all about?'"
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.