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 second quarter of 2024 has come and gone. It was a surprisingly strong quarter for dividend paying stocks.
That's especially true in year-over-year terms, as more firms announced they were increasing their dividends while fewer firms announced they were decreasing them. Quarter-over-quarter, the picture appears more mixed, but mainly because the seasonal pattern in which the first quarter typically sees the most dividend rises.
However, that seasonal pattern doesn't hold for dividend decreases. 2024-Q2 saw significantly fewer reductions than were recorded in 2024-Q1, confirming the relative strength of the U.S. stock market during the period from April through June 2024.
Here's our chart visualizing the number of U.S. firms increasing and decreasing their dividends by quarter. The chart spans the last five quarters from the year ago calendar quarter of 2023-Q2 through the just completed quarter of 2024-Q2.
Focusing now just on June 2024, we once again find the year-over-year comparison with June 2023 is favorable. More firms announced dividend increases and fewer firms announced unfavorable changes in dividends. The month-over-month data appears mixed, but that's mainly because of the seasonal pattern in which the month of June typically records the fewest dividend increases of the year.
The following chart tracks the number of announced increases and decreases in U.S. stock market dividends in each month from January 2004 through June 2024.
The following table summarizes Standard and Poor's dividend metadata for June 2024, revealing how it compares both Month-over-Month (MoM) and Year-Over-Year (YoY) with previously reported data:
Dividend Changes in June 2024 | |||||
---|---|---|---|---|---|
Jun-2024 | May-2024 | MoM | Jun-2023 | YoY | |
Total Declarations | 5,293 | 4,419 | 874 ▲ | 4,904 | 389 ▲ |
Favorable | 113 | 245 | -132 ▼ | 100 | 13 ▲ |
- Increases | 74 | 155 | -81 ▼ | 58 | 16 ▲ |
- Special/Extra | 39 | 90 | -51 ▼ | 41 | -2 ▼ |
- Resumed | 0 | 0 | 0 ◀▶ | 1 | -1 ▼ |
Unfavorable | 4 | 11 | -7 ▼ | 15 | -11 ▼ |
- Decreases | 4 | 11 | -7 ▼ | 15 | -11 ▼ |
- Omitted/Passed | 0 | 0 | 0 ◀▶ | 0 | 0 ◀▶ |
If you need to condense all this information into a single number to determine whether June 2024 was a good or bad month for dividend paying firms, you can find it by taking the number of favorable changes and subtracting the number of unfavorable changes for the month. For June 2024, we find 113 favorable changes and 4 unfavorable changes, giving us a net difference of +109 after the math. This positive result confirms June 2024 as a positive month for dividend paying stocks, especially when compared year-over-year with June 2023's result of +85.
As we close, we find there is a bearish storm cloud potentially developing in the U.S. stock market, which can be found in the earnings per share data for 2024-Q2 for the S&P 500 (Index: SPX). When we last looked at the index' projected earnings per share data six weeks ago, it appeared to be on track to complete the S&P 500's full recovery from its 2022 earnings recession in June 2024. However, S&P reports the index' earnings per share in 2024-Q2 came in less than what it recorded in 2024-Q1.
It's too early to tell if more negative changes for earnings lie ahead. But at a minimum, it means the full recovery from the S&P 500's 2022 earnings recession has been delayed for at least another quarter.
Standard and Poor. S&P Market Attributes Web File. [Excel Spreadsheet]. Accessed 1 July 2024.
Image credit: Microsoft Copilot Designer. Prompt: "An editorial cartoon of a celebrating Wall Street bull that is nervously looking at a storm cloud that looks like a bear".
Labels: dividends, SP 500, 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.