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
How well can dividend forecasts for individual stocks predict their future prices?
That's a question that we took on earlier this year, where we resuscitated an old stock price prediction technique to see how well it might work to identify potential investment opportunities for five companies, whose stocks had been identified as strong candidates for dividend increases during 2017-Q1. The five stocks and their dividend increase forecasts were:
We then took annual dividend data and the stock prices recorded for each of these firms on the first day of trading in each year going back over the last several years, and plotted a relationship between them. We then used that relationship to identify if any stock prices in early 2017 were either potentially overvalued or undervalued with respect to the trends we identified. And then we sat back until we had results to see how the stock prices for each changed after they declared their dividends during the quarter.
We now have the results for 4 of the 5 companies, where we're only awaiting TJX's next dividend declarations to officially close the books on this experiment. The following chart shows the historical data we used to generate the trendlines for each stock, their forecast annual dividend for 2017, where their stock prices went on the day they declared their dividends and also where they were as of the close of trading on 20 March 2017.
In our original forecast, we had only identified two stocks that offered any sort of investment potential based on the value of their stock prices with respect to their trendlines: Home Depot (NYSE: HD), which looked to be undervalued, and Vulcan Materials (NYSE: VMC), which looked to be overvalued.
In the nearly two months since that analysis, we see that both assessments were correct. In VMC's case, we see that as VMC's dividend came in as expected, its stock price has moved downward to converge with its trendline. In Home Depot's case however, we see that company's dividend hike was far in excess of what had been forecast for it as the company reported a blowout quarter, where its stock price has risen, but not as strongly as its trendline would have suggested it might. And in truth, it has been diverging away from its historic trendline even as it has risen, which perhaps suggests that older trend may no longer be in effect and needs to be redrawn.
There was one real surprise for the quarter where these five stocks were concerned. Bucking the best-laid plans of professional dividend forecasters, Comcast (NASDAQ: CMCSA) pulled a fast one and split its stock on a 2:1 ratio, halving its dividend and very nearly also its stock price! The fun part of that change is that the stock price appears to have continued to track along its trendline, although it is now on the high side of it, suggesting that the stock is somewhat overvalued. Meanwhile, the stock price for Cisco Systems (NASDAQ: CSCO) behaved almost exactly as expected, keeping comparatively close to both its forecast and its historic trendline.
After TJX has declared its next dividend, which we think will be in April, we'll update the original version of this post on our site.
Labels: dividends, forecasting, investing
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.