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
Since we last looked at the chaotic mess that is the U.S. stock market on 19 February 2009, we've seen the S&P 500 plunge by 6.8% from a level of 788.42 at the close of 18 February 2009 to the 27 February 2009 close of 735.09.
The question for investors today: Is that too high or too low?
That question arises as Jim Hamilton has reviewed Robert Shiller's concept of the "perfect foresight stock price", which Shiller introduced in a 1981 paper, and applied it to two basic scenarios. First, he compared Shiller's "perfect foresight" scenario, assuming a growth of stock prices consistent inflation-adjusted growth rate of 2% for dividends against the historic performance of stocks since 1871, finding that:
... under the hypothesized scenario, we have just come out of a 20-year episode during which stocks were "overvalued", but got back to a situation where they were again undervalued when the S&P500 fell below 830.
Hamilton next asked a classic "what if" question. What if the growth rate of dividends followed the same track they did during the Great Depression from today's levels? Here, he considers what would happen to stock prices if what happened between January 1931 and January 1936 were to occur again, finding:
If we're about the enter Great Depression II, stocks are still overvalued, and the S&P500 would have to fall another 19% [all percent calculations reported here are logarithmic changes] to get down to 608, the value at which investors could again anticipate a 5.5% real rate of return given the horrible news ahead on dividends. This alternative path for P*(t) doesn't get back to the current value for the actual S&P (which closed at 735 on Friday) until 2016.
The question again: Are stock prices too high, or too low?
Here's what we observe in today's market. The change in the growth rate of stock prices are, at present, very closely following what investors expect will happen to the growth rate of dividends. Here's our latest evidence of that contention, through the close of trading on 27 February 2009, as seen in the chart to the right.
We observe that the change in the growth rate of stock prices continues to be consistent with what investors expect will occur with the growth rate of dividends going into the fourth quarter of 2009. With that being the case, absent additional changes to the expected level of cash dividends to be paid out by the companies of the S&P 500 into the reasonably foreseeable future, we find that stock prices are going pretty much right where we should expect them to be.
And that reasonably foreseeable future indicates that we can reasonably expect the downward trajectory of stocks to slow and reverse in the very near future.
Update 2: The stocks cutting their dividends are General Electric (GE), International Paper (IP) and PNC Financial Services (PNC). Given their high weighting in the S&P 500 (and also their presence in the Dow Jones Industrials), the changes at GE and IP are the big drivers behind today's action.
Labels: chaos, dividends, forecasting, SP 500, stock market
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.