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
Dividends for the U.S. stock market ended 2024 on a positive note. Measured against their year-over-year comparables, the number of favorable dividend changes in December 2024 outweighed the number of unfavorable changes, giving us a net change of +5.
The dividend situation becomes more complex when we get deeper under the hood for the index. The number of firms announcing they would pay an extra or special dividend to their shareholding owners decreased by seven from their December 2023 total. That unfavorable change however was exactly offset by a year-over-year increase of seven firms announcing they were increasing their dividend payouts.
Meanwhile, the number of firms announcing they would decrease their dividends in December 2024 increased by two above their level in December a year ago, which would tip the balance to the unfavorable side of the scale. The only factor that shifted toward a net positive outcome for dividend changes were the seven firms that announced they were resuming paying dividends after having previously suspending or passing on paying them.
It's an unusual way to back into a net positive result, but we'll take it! The following table presents Standard and Poor's dividend metadata for December 2024. It summarizes how the month's dividend data compares in both Month-over-Month (MoM) and Year-Over-Year (YoY) terms with previously reported data:
Dividend Changes in December 2024 | |||||
---|---|---|---|---|---|
Dec-2024 | Nov-2024 | MoM | Dec-2023 | YoY | |
Total Declarations | 5,374 | 4,108 | 1,266 ▲ | 5,405 | -31 ▼ |
Favorable | 246 | 221 | 25 ▲ | 239 | 7 ▲ |
- Increases | 128 | 143 | -15 ▼ | 121 | 7 ▲ |
- Special/Extra | 111 | 78 | 33 ▲ | 118 | -7 ▼ |
- Resumed | 7 | 0 | 7 ▲ | 0 | 7 ▲ |
Unfavorable | 10 | 16 | -6 ▼ | 8 | 2 ▲ |
- Decreases | 10 | 16 | -6 ▼ | 8 | 2 ▲ |
- Omitted/Passed | 0 | 0 | 0 ◀▶ | 0 | 0 ◀▶ |
Let's next visualize just the data for U.S. stock market's dividend increases and decreases, showing how they fit in the trends for this dividend metadata over the past 21 years.
In the next chart, we've grouped the previous 15 months worth of dividend increase and decrease data into quarters, covering the last five quarters from 2023-Q4 through 2024-Q4.
Viewed from this perspective, we find the fourth quarter of 2024 is overall slightly more negative than the fourth quarter of 2023. The number of dividend increases by quarter however increased for the second time since bottoming in 2024-Q2, which is a potential cause for concern going into 2025.
To end on a positive note, we also find the overall number of monthly dividend decreases remains below the threshold that is consistent with recessionary conditions being present in the U.S. economy.
Standard and Poor. S&P Market Attributes Web File. [Excel Spreadsheet]. Accessed 3 January 2025.
Image credit: SyedaAfreen1810443, CC BY-SA 4.0, via Wikimedia Commons.
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.