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
Every three months, we take a snapshot of the expectations for future earnings in the S&P 500 at approximately the midpoint of the current quarter. Today, we'll confirm that the expected earnings per share for the S&P 500 throughout 2015 has continued to fall from the levels that Standard and Poor had projected they would be back in February 2015.
The table below quantifies the carnage for what can now be described as a deepening earnings recession, which Standard & Poor continues to forecast will run through the third quarter of 2015:
Expected Future Earnings per Share for the S&P 500 | |||||
---|---|---|---|---|---|
Future Quarter | 2014-Q4 | 2015-Q1 | 2015-Q2 | 2015-Q3 | 2015-Q4 |
On 13 November 2014 | $109.96 | $118.23 | $124.48 | $131.07 | $134.89 |
On 15 February 2015 | $102.89 | $103.34 | $103.77 | $105.00 | $112.03 |
On 21 May 2015 | $102.31 | $99.25 | $98.79 | $99.49 | $106.61 |
Change in Expectations Since 13 November 2014 (mid 2014-Q4) | $7.65 | $18.98 | $25.69 | $31.58 | $28.28 |
Much of the decline in earnings expectations is tied to the decline in global oil prices, which primarily affects the oil industry, and also affects the business outlook for financial institutions and capital equipment manufacturers.
What we find especially curious however is that S&P would currently appear to expect an exceptionally robust recovery in the S&P 500's earnings per share beginning in the fourth quarter of 2015, largely driven by the energy-related sector of the S&P 500 index. Based on what we see in the expected future for crude oil prices through the end of 2015, we don't think that earnings recovery based on improving revenues is well supported, unless a significant amount of cost reduction occurs within the industry. Since that reduction in economic activity would ripple outward from the energy sector and negatively affect other sectors of the economy, we think that the overall earnings for the S&P 500 would be likely to perform much less well than S&P currently expects.
Silverblatt, Howard. S&P Indices Market Attribute Series. S&P 500 Monthly Performance Data. S&P 500 Earnings and Estimate Report. [Excel Spreadsheet]. Last Updated 21 May 2015. Accessed 22 May 2015.
Labels: earnings, forecasting, recession forecast, SP 500
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.