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
Over the past year, stock market dividends have consistently featured two major themes when their year-over-year changes are measured.
These mixed signals have continued once again in February 2024. Here's our chart tracking the number of U.S. publicly trading companies that have either increased or decreased their dividends each month, spanning the last two decades.
So which is it? Well, if we use the year-over-year change in the number of firms declaring they will pay an extra, or special, dividend to their shareholding owners as a tiebreaker, we're going to have to come down on February 2024 being a negative month for dividend paying stocks. That's because this number fell in February 2024, which is an unfavorable change.
We've tallied the February 2024's dividend metadata in the follwing table, presenting both Month-over-Month (MoM) and Year-over-Year (YoY) changes:
Dividend Changes in February 2024 | |||||
---|---|---|---|---|---|
Feb-2024 | Jan-2024 | MoM | Feb-2023 | YoY | |
Total Declarations | 5,386 | 3,120 | 2,266 ▲ | 5,186 | 200 ▲ |
Favorable | 396 | 200 | 196 ▲ | 539 | -143 ▼ |
- Increases | 305 | 154 | 151 ▲ | 424 | -119 ▼ |
- Special/Extra | 90 | 46 | 44 ▲ | 111 | -21 ▼ |
- Resumed | 1 | 0 | 1 ▲ | 4 | -3 ▼ |
Unfavorable | 21 | 15 | 6 ▲ | 100 | -79 ▼ |
- Decreases | 21 | 15 | 6 ▲ | 100 | -79 ▼ |
- Omitted/Passed | 0 | 0 | 0 ◀▶ | 0 | 0 ◀▶ |
Focusing on just dividend decreases reported during the month, our sampling of these declarations identified 15 of the 21 announced reductions. Here's the list:
Five of February 2024's sampling are variable dividend paying firms from the oil and gas sector, whose number falls below the threshold of ten for these firms that would indicate distress in that industry. It is better described as consistent with the typical background noise we see in this sector that follows with the month-to-month volatility of oil prices.
Four of these firms are Real Estate Investment Trusts (REITs). This represents the ongoing fallout from the Federal Reserve's 2022-2023's interest rate hikes that is impacting this sector, which has mainly impacted mortgage REITs, but which is expanding to impact the commercial real estate sector.
Rounding out the sample, we find two firms from the financial services industry, one chemical producer, one mining firm, one lodging provider, and one retailer.
Before we close, we have one last observation. Starting in 2018, the month of February has marked the annual peak for announced dividend increases. Absent a major development, the 305 dividend increases recorded in February 2024 will almost certainly be the high water mark for the year.
Standard and Poor. S&P Market Attributes Web File. [Excel Spreadsheet]. 1 March 2024.
Image Credit: Wikimedia Commons. Attribution-ShareAlike 4.0 International (CC BY-SA 4.0).
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.