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
There's an old method for assessing whether the price per share of an individual company that pays dividends to its shareholders that we've played with off and on since we resuscitated it back in January 2017. The method takes advantage of the relationship that exists between the amount of dividends per share that the company is expected to pay out to its shareholders over the next 12 months and the current day price per share of its stock, which if you track its trend over time, provides a means for telling whether the company's share price is either overvalued or undervalued at a given moment for its expected level of future dividends.
But it has a built-in weakness. In a stock market where many publicly-traded companies find it more advantageous to buy back shares of their own stocks rather than adjust their dividends per share, we can often run into the situation where the relationship between a company's dividends per share and its price per share shifts over time.
We directly ran into that analytical buzzsaw last November, when we applied the method to evaluate the state of the share price of General Electric (NYSE: GE). We found ourselves having to take GE's share buybacks into account in our analysis because the company's share price changed in response to its buybacks much more than did its projected dividend payouts.
We wondered if there was a way to take the changing number of shares out of the valuation picture. To that end, we hit on the idea of tracking the company's projected 12-month aggregate dividend payouts against its market capitalization, which theoretically eliminates the number of shares as a factor, but which are one step removed from the price per share and dividends per share data points that are much easier figures to come by. The following chart shows what we get track these measures for GE at the points of time when the company declared its future dividends from February 2010 through February 2018.
There's more noise in the relationship than we'd like to see, but it initially does appear effective in negating the effects of GE's share buybacks in the period between April 2015, when they started, and June 2017, before the company entered into its current period of financial turmoil, which may have indeed reset the level of the relationship between the company's market cap and its aggregate dividends.
GE should next declare its future dividend payouts in early June 2018. We'll check at that time to see how that relationship evolves, where we have other tools that we can apply to answer the question of whether there's a new relationship or if the old one still holds and we're just looking at the effects of pessimistic speculation on the part of investors.
Labels: data visualization, dividends, investing, 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.