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
We've had to shelve our popular "Dividends by the Numbers" series after the January 2026 edition. The series tracked the U.S. stock market's dividend metadata, which provided a simple, near real-time method of measuring the relative health of the U.S. economy.
Our analytical series was enabled by S&P Dow Jones Indices' Howard Silverblatt, who made the number and kinds of dividend actions announced for ordinary stocks traded in the U.S. stock market available each month. At this writing, it's possible S&P Dow Jones Indices will continue providing the stock market's dividend statistics on a quarterly basis, which had been the firm's practice, but they haven't yet indicated if they will.
We do however have other sources of dividend metadata to tap, which has at least two disadvantages. The biggest disadvantage is we have to generate a methodology for identifying dividend changes that may not align with the practices that S&P Dow Jones Indices, or its predecessor firms, Standard & Poor and, if we go back to the beginning, Standard Statistics, followed in compiling the data.
Another disadvantage is the scope of the alternate sources we're utilizing, which we've encountered as we simply sought to compile a list of what publicly-traded companies in the U.S. stock market declared they would decrease their dividends in February 2026. None of the sources we used to generate the list we're presenting offered a complete listing of the common stocks that decreased their dividends.
Because there isn't a single source that provides all dividend decrease data for the U.S. stock market for February 2026, we have to proceed with the assumption that the data we have represents a sample of the total.
We've opted to focus on dividend decreases because that data can provide a raw indication of which companies and industries may be experiencing some kind of distress. That distress may be significant in the case of firms that normally pay fixed dividends, which requires action on the part of their boards of directors to change their dividend payouts. Or, in the case of firms that pay variable dividends, like oil and gas royalty trusts, the number of dividend decreases that are announced can simply be an indication of whether oil prices were down in the preceding month. For variable dividend payers in the oil & gas sector, we consider any number above ten in a single month as indicating the industry is experiencing potentially contractionary headwinds.
Having now set these basic guidelines for evaluating the data, the following chart visualizes what we found for our February 2026 sampling of 26 dividend decreases:
Here's the list of sampled dividend decreases for February 2026:
Starting with the oil & gas industry, we count eight royalty trusts that pay variable distributions announcing decreased dividend payments to their shareholders, which falls below the threshold of ten we've established for indicating anything other than month-to-month noise for the sector. This makes sense because oil prices had been falling in January 2026. It's won't be until March 2026 that the U.S. military action against Iran that has prompted an increase in oil prices will reverse that trend, which bodes well for these firms in April. At this writing, the expectations are this spike will be comparatively short lived, which is why the stock prices of major oil firms haven't boomed in response.
The most notable dividend decreases announced in February 2026 are the eight reductions among firms in the financial service sector. These are primarily made up of Business Development Companies, or BDCs, which provide loans to medium-to-small businesses. These firms have been hit by a combination of falling interest rates, which puts pressure on their profitability margins, and the disruption of businesses to which they lend from artificial intelligence technologies. In recent months, the outlook of firms in the Software as a Service (SAAS) sub-sector of the information technology sector have been absolutely hammered by the increasing capabilities of AI.
Closing out the list, four firms in the Materials industry (steel foundries, gold miners, and timber) announced dividend decreases. There two each in the chemical and real estate sectors, and one each in the banking and consumer goods industrial categories.
On the whole, with less than 10 firms in oil and gas sector and fewer than 50 overall, the total number of dividend decreases in our February 2026 sample falls below the threshold that signals recessionary conditions are present within the U.S. economy.
Image credit: Dividends definition. State Savings and Loan Association advertisement on Page 9 of Beatrice, Nebraska's Beatrice Daily Express, 12 December 1921. Chronicling America. [Online Database]. 12 December 1921. Public domain image.
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.