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
Dividend paying firms in the U.S. stock market saw more negative than positive changes in November 2025 when compared against the market of November 2024. That's disappointing because October 2025 saw dividend payers break an eight-month-long losing streak for this simple measure that indicates the relative health of the underlying U.S. economy by turning in a positive result.
Alas, there is no new winning streak taking hold. The single number that describes how dividend payers fared during the month is -22, with that many more unfavorable actions outweighing the kind of favorable actions that the owners of dividend paying stocks like to see.
Falling back into the recent pattern of the eight month-long losing streak, this net outcome was the result of a declining number of favorable changes like dividend increases and announcements of extra (or special) dividends payments for shareholders. Overall, there were 28 fewer favorable actions in November 2025 than there were in the same month a year earlier, of which, there were 19 fewer extra dividends and 9 fewer increases than had been announced in November 2024.
These unfavorable changes outweighed the favorable development of fewer companies decreasing their dividend payouts. There were just 10 such firms counted by Standard & Poor in its tally for November 2025, a decrease of 6 from the total recorded a year earlier.
The following table totals up all the favorable and unfavorable dividend actions for November 2025 and compares the figures with the values recorded for October 2025 and November 2024 to reveal how they changed month-over-month (MoM) and year-over-year (YoY):
| Dividend Changes in November 2025 | |||||
|---|---|---|---|---|---|
| Nov-2025 | Oct-2025 | MoM | Nov-2024 | YoY | |
| Total Declarations | 4,948 | 4,563 | 385 ▲ | 4,108 | 840 ▲ |
| Favorable | 193 | 197 | -4 ▼ | 221 | -28 ▼ |
| - Increases | 134 | 148 | -14 ▼ | 143 | -9 ▼ |
| - Special/Extra | 59 | 49 | 10 ▲ | 78 | -19 ▼ |
| - Resumed | 0 | 0 | 0 ◀▶ | 0 | 0 ◀▶ |
| Unfavorable | 10 | 7 | 3 ▲ | 16 | -6 ▼ |
| - Decreases | 10 | 7 | 3 ▲ | 16 | -6 ▼ |
| - Omitted/Passed | 0 | 0 | 0 ◀▶ | 0 | 0 ◀▶ |
The following chart visualizes the monthly counts of dividend increases and decreases from January 2004 through November 2025.
The bottom line? While November 2025's dividend metadata contained some positive developments, they were overshadowed, resulting in a net negative outcome for dividend paying companies in the U.S. stock market.
Standard and Poor. S&P Market Attributes Web File. [Excel Spreadsheet]. Accessed 1 December 2025.
Image credit: Microsoft Copilot Designer. Prompt: "An editorial cartoon of a Wall Street bear dressed as a hockey goalie blocking shots by a skating Wall Street bull dressed as a hockey player trying to score goals in a net that says 'FAVORABLE DIVIDEND CHANGES'".
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.