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 numbers for U.S. stock market dividends took a distinctly bearish direction in August 2024.
We can see that in the form of a single number, which is simply the net year-over-year change in the number of favorable and unfavorable dividend actions. Favorable changes include things like dividend increases, resumptions of dividends after having been suspended, and also special or extra dividend payments for shareholders. Unfavorable changes include dividend decreases and omitted (or passed) dividends.
August 2024 saw the positive development of fewer unfavorable actions, with four fewer dividend reductions or omissions than took place in August 2023. That positive however was more than offset by the negative change in the number of favorable dividend actions, as thirty fewer companies declared they would boost dividend payments to their shareholders than did a year earlier. That makes -24 the single overall net number that describes August 2024's dividend actions.
That negative number continues an ongoing bearish trend for dividend payers in the U.S. stock market over much of the past year. The numbers behind our single number describing the trend for U.S. stock market dividends are presented in the following table, which gives the number of dividend declarations, announced increases, decreases, resumptions, omissions, and special (or extra) dividend payments for August 2024, showing how they changed month-over-month from July 2024 and how they changed year-over-year from August 2023.
Dividend Changes in August 2024 | |||||
---|---|---|---|---|---|
Aug-2024 | Jul-2024 | MoM | Aug-2023 | YoY | |
Total Declarations | 4,105 | 3,882 | 223 ▲ | 4,465 | -360 ▼ |
Favorable | 188 | 156 | 32 ▲ | 218 | -30 ▼ |
- Increases | 119 | 116 | 3 ▲ | 134 | -15 ▼ |
- Special/Extra | 67 | 39 | 28 ▲ | 81 | -14 ▼ |
- Resumed | 2 | 1 | 1 ▲ | 3 | -1 ▼ |
Unfavorable | 13 | 5 | 8 ▲ | 17 | -4 ▼ |
- Decreases | 13 | 5 | 8 ▲ | 15 | -2 ▼ |
- Omitted/Passed | 0 | 0 | 0 ◀▶ | 2 | -2 ▼ |
While the net trend is negative, the overall level of dividend increases and decreased are still removed from the levels that would confirm the arrival of recessionary conditions in the U.S. economy. The following chart visualizes the monthly counts of dividend increases and decreases from January 2004 through August 2024.
August 2024 reverses the small positive net change recorded in July 2024 and resumes the negative trend we've seen develop in the data since 2023.
We sampled dividend decreases announced during August 2024, finding most were declared by firms that pay variable dividends in the oil and gas sector, which makes sense since oil prices have been falling during the past two months. Despite that, we find the number of these dividend decreasing firms remains well below the threshold we associate with recessionary conditions in the oil and gas industry.
The unanswered big money question is how long might that continue if the bearish trend for dividends continues?
Standard and Poor. S&P Market Attributes Web File. [Excel Spreadsheet]. Accessed 4 September 2024.
Image Credit: Microsoft Copilot Designer. Prompt: "An editorial cartoon of a Wall Street bear looking at a crystal ball with the word 'DIVIDENDS'".
Labels: dividends, stock market
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.