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 2024 continued following the template set during 2023 for dividend paying stocks in the U.S. stock market.
That template has some defining characteristics, measured year-over-year:
Together, these two characteristics set the stage for a mixed outcome for dividend paying firms during 2024-Q1, at least as measured year over year, where the point of comparison is 2023-Q1.
Quarter-over-quarter, the situation also appears mixed. But this time that's because:
Both these mixed outcomes can be seen in the chart tallying the number of U.S. firms either increasing or decreasing their dividends by quarter, covering the five quarters from 2023-Q1 through 2024-Q1.
We have to go to the monthly changes to find data that suggests a more favorable situation may be starting to develop in the U.S. stock market. Here, when we compare March 2024 to the year-ago month of March 2023, we find that year-over-year:
The numbers aren't big, but we'll take our silver lining where we can find it! The number of dividend rises and decreases reported each month over the last 20 years to put these numbers into their long term context.
The following table provides the numbers that back our observations. It summarizes Standard and Poor's dividend metadata for March 2024, showing how it compares in both Month-over-Month (MoM) and Year-Over-Year (YoY) terms with previously reported data:
Dividend Changes in March 2024 | |||||
---|---|---|---|---|---|
Mar-2024 | Feb-2024 | MoM | Mar-2023 | YoY | |
Total Declarations | 5,306 | 5,386 | -80 ▼ | 4,654 | 652 ▲ |
Favorable | 200 | 396 | -196 ▼ | 173 | 27 ▲ |
- Increases | 130 | 305 | -175 ▼ | 124 | 6 ▲ |
- Special/Extra | 67 | 90 | -23 ▼ | 44 | 23 ▲ |
- Resumed | 3 | 1 | 2 ▲ | 5 | -2 ▼ |
Unfavorable | 15 | 21 | -6 ▼ | 53 | -38 ▼ |
- Decreases | 15 | 21 | -6 ▼ | 53 | -38 ▼ |
- Omitted/Passed | 0 | 0 | 0 ◀▶ | 0 | 0 ◀▶ |
Our sampling of January 2024's unfavorable dividend actions found just six firms announcing decreases in dividend payments to their shareholding owners. Here's the very short list:
We'll close on that positive note and will hope April 2024 builds on that positive momentum for the U.S. stock market's dividend paying firms!
Standard and Poor. S&P Market Attributes Web File. [Excel Spreadsheet]. Accessed 29 March 2024.
Image credit: Cash Dividend by Nick Youngson on Picpedia. Creative Commons CC by SA 3.0 Deed.
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.