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
On 13 March 2012, the S&P jumped upward by nearly 2%, rising by 24.86 points to 1395.95, mainly on the news that the Federal Reserve was giving a passing grade to 15 of the 19 largest banks in the United States.
What makes this more than just a noise event was the subsequent action taken by Wells Fargo (NYSE: WFC to almost double the amount of its quarterly dividend for the first quarter of 2012, increasing it from 10 cents per share to 22 cents per share. The Federal Reserve's announcement at 3:00 PM EDT had essentially opened the door to allow Wells Fargo to act upon what were previously whispered rumors.
Because Wells Fargo is currently the 12th largest component of the S&P 500, the company's market capitalization weighted dividend increase has a significant effect upon the expected dividends for the entire index.
In our first chart, we can see the impact of WFC's dividend increase through all the dividend futures we have available through the first quarter of 2013. These are the expected trailing year dividends per share for the S&P 500 through 15 March 2013:
Our next chart shows the amount of dividends per share that have been recorded since the first quarter of 2009 through the fourth quarter of 2011, and also investors now believe that the publicly traded companies of the S&P 500 will pay out for each quarter through the first quarter of 2013:
And, for good measure, our final chart add S&P's historic quarterly dividend data going back to the first quarter of 1988:
One important thing to note in this this last chart is that the current period, since the recession was declared to have ended in June 2009, also marks a period of essentially jobless recovery.
In previous periods, such jobless recoveries coincide with flat levels of dividends per share, but in the current post-recession period, we've seen rising levels of dividends per share.
This is largely a consequence of the nature of the fiscal crisis that accompanied the recession, where the U.S. Treasury and Federal Reserve forced the nation's largest banks to cut their dividends to extremely low levels in the latter portion of 2008 and early in 2009 for the sake of trying to preserve the solvency of the most troubled large banks. Instead of making payments to stockholders, the banks instead built up their reserves.
The action by the U.S. Treasury and the Federal Reserve forced otherwise healthy large banks to also cut their dividends to build up their reserves, which was done in an attempt to prevent the outright failure of the much more troubled institutions by hiding which were in direct and immediate danger of failing, making it appear that all were at a similar level of distress.
As U.S. banks have seen their fortunes improve in the period since, the federal government and Federal Reserve has allowed a number of banks to increase their dividend payments to stockholders. A very good portion of the rise in dividends seen since the fourth quarter of 2010 may be attributed to banks being allowed to turn their dividends back on, rather than an improving economic environment.
And that's how we can have a jobless recovery *and* rising dividends. If the healthiest large banks in the U.S. had been free to set their own dividend payments during this period, we would very likely see the same flat level for dividends that accompanied other jobless recoveries.
Labels: 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.