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
Now that we've entered a new business quarter, it's time to look ahead at what investors currently expect for the economic situation in the United States through the end of 2011.
We'll do that using dividend futures data for the S&P 500, where we can get a good sense of how good investors expect each quarter between now and the fourth quarter of 2011 will play out by size of the gaps between each quarter's projected trailing year dividend data.
What we find is that investors expect very little in the way of economic growth in the fourth quarter of 2011. That would appear to be followed by a major economic boom in the first quarter of 2011, followed by a very sluggish second quarter, before growth would seem to pick up again in the third and fourth quarters of the year.
The problem we see in looking at what investors expect for the future is the major economic boom that would appear to be in store for 2011-Q1.
One observation we need to make right off the bat involves the time mismatch between a quarter represented by dividend futures contracts and a calendar business quarter. Here, there is often anywhere from 12-15 days that elapse from the time a dividend futures contract expires and the end of a calendar business quarter.
That's a significant factor for when we look forward to the first quarter of 2011, where we see that the U.S. economy would appear to be in for a booming quarter. Unfortunately, there are other factors at play that would make that outcome very unlikely.
What we suspect is that businesses will be paying out much larger cash dividends to their shareholders during the final 15 calendar days of 2010 than they would have done otherwise, thanks to the continuing uncertainty related to how much dividends will be taxed in 2011.
With the U.S. Congress having adjourned until November 2010 without having taken any action to deal with tax rates in 2011, investors face three possible scenario where dividends are concerned:
Looking at the expected future quarterly dividends per share that will be paid out through the end of 2011, it appears to us that the high level of dividends expected to be paid out in the first quarter of 2011 is most likely an anomaly, which we find is also supported by historical quarterly dividend data.
Consequently, we find that rather than enjoying a booming economy in the first quarter of 2011, the U.S. economy will continue its recent history of anemic growth during that quarter.
Speaking of which, we'll be officially projecting where GDP will be recorded for the third quarter of 2010 later this week.
Update 10:27 AM PDT: It suddenly occurred to us that if the trailing year dividend futures data we use to project where stock prices are going next are indeed being inflated by an investor game of "beat the clock" being played in the first quarter of 2011 (or rather, during the last two weeks of 2010), it may well be that the noise we've been seeing in the stock market since April 2010 may in fact be in the dividend data rather than in the price data!
If that's the case, stock prices will likely underperform our last forecast by a significant margin, since we assumed that the dividend data we used to make our projection was real and not being inflated above where expected future business conditions would otherwise put them!
It all just got a lot more interesting!
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.