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
After ending the previous week with their forward-looking focus essentially split 50/50 between the current quarter of 2014-Q4 and the more distant future quarter of 2015-Q3, investors fully shifted their attention to 2014-Q4 thanks to a spate of economic news related to the current quarter events, including the 2014 midterm elections, improving new jobless claims and the best employment situation report of the past six years. How long that focus will remain on 2014-Q4 is now up in the air, with the main question now being to which future quarter will investors turn their attention next.
There's also the lesser question of when that shift in focus will occur. With just one week to go, earnings season for 2014-Q4 is nearly over, and with it, the opportunity for companies to alter the fundamental basis for the future expectations of investors: how much of their earnings and cash flow that they will commit to pay out as cash dividends to investors in upcoming future quarters. That puts the beginning of the likely window of time in which investors will have to focus upon a more distant future quarter at 17 November 2014, although there's nothing that really requires them to wait that long as there are no major economic reports coming out in the next week that might sustain their focus on 2014-Q4.
As far as fundamentally-driven changes in future expectations go, the window for those kinds of factors to affect the outlook for investors will then be closed until the next earnings season opens in 2015-Q1.
And then there's the potential influence of the timing of the Fed's announcement on 29 October 2014, when it confirmed that it would indeed terminate its QE 3.0 and QE 4.0 bond-buying programs. Here, when the Fed terminated its previous rounds of Quantitative Easing (QE 1.0 and QE 2.0), there was often a one-month lag between the announcement and a sudden change in the level of stock prices.
Those delays were largely tied to the maturation of short-term Treasuries and expiration of short-term stock option contracts purchased in the days before the Fed's announcements, where the money invested in them was locked up until their maturation and expiration dates were reached. As that money was freed up, investors made new investment decisions based upon their updated future expectations, which would account for the sudden shifts that occurred for stock prices at the one-month anniversary of those previous QE termination announcements.
Since the Fed opted to steadily taper off its asset purchases in its recently concluded round of quantitative easing, we would not expect such dramatic shifts to occur because the amount of its own asset purchases is much lower. The date however would remain important as it would define the likely end of the window in which we would anticipate that investors will shift their focus.
The best outcome for stock prices would be if investors shift their attention toward 2015-Q2, which would correspond to a largely flat trajectory for stock prices. The next best outcome would be for investors to focus upon 2015-Q3, which would coincide with a 5-10% decline in stock prices in the near term. The worst outcome would be if investors are forced to focus upon 2015-Q1, where the decline in stock prices would be considerably greater.
Yet unknown, the wild card in future expectations is 2015-Q4, where we won't get a good read upon until late December 2014.
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.