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, we test drive new forecasting methods for stock prices to see how they perform.
Back in early November 2018, we presented a prediction for what would happen with the share price of General Electric (NYSE: GE) based on a relationship between its expected future dividends and its market cap. Let's quickly recap that old forecast:
Now that General Electric (NYSE: GE) has slashed its quarterly dividend by 91%, from $0.12 to $0.01 per share, which we estimate is about 50% more than what investors had already priced in to the stock, what can they expect next for the company's share price?
Based on the historic relationship that investors have set between the company's market capitalization and its aggregate forward year dividends since 12 June 2009, we would anticipate GE's share price falling to somewhere within a range of $3 to $7.
Almost two years later, we can see how well the forecasting method we were testing worked, updating that original chart to show how history played out. The new chart catches the data up through 3 September 2020 to coincide with the date of GE's most recent dividend declaration:
It didn't take long for GE to prove that prediction right, with its market cap dropping within the top end of our target range in a month's time.
But that outcome didn't last very long. Soon, GE's stock price rose above the range we had projected using nine years worth of historical data, staying well above it for a prolonged period of time. It took the onset of today's Coronavirus Recession to drop GE's market cap back within that target range. Even so, GE's market cap hasn't fallen below the midpoint of that range during any of that time, which means the method we used set the target too low.
Being able to connect a company's expected forward year aggregate dividends to its market capitalization to forecast its stock price could be a valuable way of determining whether its current share price presents a buying or a selling opportunity. Doing a better job in setting the target would better indicate which kind of investing opportunity might exist at any given time.
We have an idea for how to improve our result, which we'll explore more in upcoming weeks. To test it out though, we'd like to look at some other stock than GE, since we don't expect the company will be changing its dividend payouts anytime soon. If you have a candidate for us to consider, please drop us a line!
Dividend.com. General Electric Dividend Payout History. [Online Database]. Accessed 22 September 2020.
Ycharts. General Electric Market Cap. [Online Database]. Accessed 22 September 2020.
Yahoo! Finance. General Electric Company Historical Prices. [Online Database]. Accessed Accessed 22 September 2020.
Labels: dividends, investing, market cap
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.