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
The Bureau of Labor Statistics released the Consumer Price Index for March 2008 today, which means that we can finally update our signature tool for finding the average performance of the stock market between any two calendar months since January 1871, The S&P 500 at Your Fingertips!
But wait, that's not all! With the first quarter of 2008 now officially over, and the fourth quarter of 2007's earnings finally finalized, we've gone back and revised all our dividends and earnings data in the tool going back as far October 2007. Quick summary of the revisions: dividends same to better, earnings worse.
Meanwhile, as the March 2008 inflation figure (CPI-U) came in at 213.528, a 4.0% increase over March 2007, investments in the S&P 500 held over this time have fared worse that just the point drop in the index value since December 2007 would suggest.
Of course, we just don't talk about the market. We take pictures of it as well! First up, here's he S&P 500's average monthly index value since January 1952, which covers the modern era of the U.S. stock market:
Next, here's the S&P 500's trailing year dividends per share from January 1952 through March 2008:
And here's an update of our signature chart showing the S&P 500's average monthly index value against its trailing year dividends per share since June 2003, coinciding with the most recent period of market stability and the beginning of a disruptive event in the market in January 2008, complete with a bonus point showing where the stock market is as of the April 15, 2008 market close:
Finally, here's an update of our chart tracking the Price Dividend Growth Ratio, or rather, the ratio between the year-over-year growth rate of stock prices and the year-over-year growth rate of dividends per share, from January 1952 to March 2008:
These latter two charts indicate that the turmoil being created by the troubles of the housing sector and financial institutions are, as of March 2008, largely contained to those sectors. The stock market is so far proving to be somewhat resilient and the level of distress in the market is not yet building toward a spike.
That's important as spikes in stock market distress often coincide with recessions in the U.S. economy. For that to happen, a serious erosion of earnings would need to occur that would then lead to zero year-over-year growth in the market's dividends per share. The trend at present is that this rate of growth is declining, but still well in positive growth territory (as projected by S&P, the year-over-year dividends per share growth rate will slowly decreased from 10.45% in December 2007 to 9.27% by year end.)
However, a spike in stock market distress is not a requirement for a recession to occur, as the U.S. economy is a lot bigger than its stock markets. At present, the best analog we have in our historical data to today's economy and market conditions is the period from 1978 to 1980.
Ultimately, we may see things play out along those lines, albeit on a much smaller scale, as both inflation and unemployment are much lower today than in those strained days. With the Price-Dividend Growth Ratio at -0.58 as of March 2008, we note that a negative value of this ratio often precedes periods of real distress in the stock market.
Labels: SP 500, stock market, update
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.