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
From time to time, Political Calculations will follow a single stock. To qualify as a stock we follow, we look for one major characteristic: the stock must be on the verge of a major potential change involving its dividend, when the question of whether the company will change its dividend is still up in the air.
In 2018, that stock belonged to General Electric (NYSE: GE), which followed through on our prediction that it would cut its dividend by a large amount. In 2020, we identified Iron Mountain (NYSE: IRM) as a promising investment based on the hypothesis it would not cut its dividend despite its depressed stock price.
Last Thursday, 15 September 2022, FedEx (NYSE: FDX) came roaring onto our radar screen when, after the market had closed, the firm tossed out the earnings guidance it presented to investors just three months earlier, because of the deterioration of the U.S. and global economy's outlook over the summer.
The company's stock price was hammered in the next day's trading, falling over 21% from the previous day's close, its "biggest plunge ever". But although the firm withdrew its previous earnings guidance and announced plans to shutter retail stores, park its cargo transport aircraft, freeze its hiring and cut back labor hours of its staff, it left one big cash-preserving option unaddressed. FedEx' leaders haven't announced what they might do about the company's quarterly dividend.
The following chart illustrates how we see FedEx' options potentially playing out:
Superficially, FedEx' current situation is similar to what we found for Iron Mountain back in 2020. The company's current stock price is well depressed, where a handsome reward awaits if its outlook improves and no dividend cut is needed, or a major dividend cut needs to be on the table because its outlook remains grim.
The chart shows FDX lived through a very similar experience back in June 2020 as faces the company today. Then, the company's executives were presented with similar options. If the company's prospects improved, leaving the dividend alone would see its stock price soar back to the level the long term relationship between it and the company's trailing year dividends per share would place it. If they didn't, a dividend cut of 61% would make sense given the level of its stock price.
Ultimately, the prospects for the global economy and FedEx rapidly improved in the following months, and investors who might have bought into the company at that time were well rewarded. But what would happen today?
If the "outlook gets better" scenario holds, given where its stock closed on Friday, 16 September 2022, our simple analysis suggest FDX could double in value. But if the "things stay grim" scenario is the right one, FedEx' board of directors could cut the dividend by as much as 64%.
We have one more bit of information to consider that may tell us which way FedEx' board will go. In June 2022, they boosted FedEx' quarterly dividend from $0.75 to $1.15 per share, a 53.3% increase. When they implemented that dividend, it was based on the company's earnings outlook from that time. The one they just trashed. Since they've thrown out that forecast, we think FDX' dividend is now also on the cutting board, with at least a 50% reduction up for consideration. That's despite the company's history in avoiding cuts to its dividends for its shareholding owners.
The only question is now is how long it will be before the board acts. In ordinary circumstances, the company could wait to announce a cut when it will next declare dividends in early November. In an economy with deteriorating prospects, it would be to their advantage to act much sooner than that.
NASDAQ. FDX Dividend History. [Online Database]. Accessed 17 September 2022.
Yahoo! Finance. FedEx Corporation (FDX) Historical Data. [Online Database]. Accessed 17 September 2022.
Labels: dividends, investing, stock market, stock prices
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.