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
Unfavorable changes. Just saying that phrase doesn't sound good, because it means something has turned for the worse.
When it comes to stock market dividends, it is, unfortunately, a very well established phrase. We suspect it was first deployed for that purpose on 5 October 1927 by Bertie Forbes, the founder of the long-running business magazine that still bears his name, though his surviving family members no longer own a majority stake in the company he established. At the time, he was reporting on the Roaring 1920s stock market in his syndicated column, which he quantified by counting up the dividend changes being announced each month by the firms whose stocks he tracked. With the booming stock market of that era, he was mainly reporting on favorable changes.
But in this column, Forbes used the term "unfavorable" for the first time to describe the combined total of dividend reductions and omissions that had occurred, noting there had been 21 such announcements in September 1927, and 131 overall in the year to date. In another two years, Forbes would come to use that phrase much more often as the Great Depression got underway and the number of unfavorable dividend changes exploded. His terminology took hold among the financial analysts of the day and has survived to the present.
We've previously presented what dividend reductions, or reductions, looked like through the Great Depression. But that only tells less than half of the story of how bad things were during that time. To tell the whole story, we need to add omitted (or passed) dividend announcements to the monthly totals of dividend reductions.
That's what we're doing today. But not just for the Great Depression, where we have previously compiled monthly data from January 1929 through December 1936 originally provided by the Standard Statistics Company, one of the precursor firms for today's Standard and Poor. We also have S&P's data for unfavorable dividends that runs from January 1955 through February 2023. The following chart shows all the historical data for unfavorable dividend changes we've been able to obtain at this point in time.
Aside from the missing data in the period from January 1937 through December 1954, the data we do have does an amazing job communicating the scale of how bad the United States' worst economic crises were.
If you go by the height of the number of unfavorable dividend changes, we find the Coronavirus Recession ranks second to the Great Depression. The sheer mass and duration of the Great Depression's dividend reductions and omissions clearly mark that event as far, far worse. If not for the Coronavirus Recession spike, the so-called "Great Recession" of 2008-2009 would rank second and, if we compare the areas under the numbers of unfavorable dividend changes each month, it does.
We also see some potentially useful thresholds. For the periods where we have data, having the number of unfavorable dividend changes reach a level of 50 or higher in a single month often coincides with official periods of recession or significant distress for U.S. businesses. Historically, unfavorable changes that reach higher than 100 per month point to periods characterized by severe levels of economic distress.
Standard and Poor reported 100 unfavorable dividend changes in February 2023.
We previously did the legwork for compiling the Great Depression era's unfavorable dividend changes using contemporary newspaper reports published between January 1929 and January 1937 that featured the Standard Statistics Company's data. We thank Howard Silverblatt for providing Standard and Poor's archived data for unfavorable dividend changes from January 1955 through December 2003. Our source for unfavorable dividend data from January 2004 through the present is Standard and Poor's S&P Market Attributes Web File, which Howard and S&P's analytical team compile each month.
If you compare the Standard Statistics Company/Standard & Poor's data with that reported by B.C. Forbes in the 1920s and 1930s, the historic S&P data presents a more complete picture. It represents the dividend announcements of all publicly-traded firms in the U.S. stock market, while Forbes' data is based on a smaller subset of U.S. firms he regularly tracked.
Standard and Poor. S&P Market Attributes Web File. [Excel Spreadsheet]. 1 March 2023.
Image Credit: U.S. Library of Congress (Chronicling America). Real Napoleonic Financiering. National Tribune (Washington D.C.) Vol XXVII, No. 12, 1379, p. 1. [Online Database].
Labels: data visualization, 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.