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
In Week 3 of May 2017, the S&P 500 provided a small demonstration of what can happen to stock prices whenever investors shift their focus from one point of time in the future to another.
Because we've already discussed that "almost interesting" event, where investors partially shifted their forward-looking attention from 2017-Q2 to 2017-Q3, we'll simply note that the S&P rebounded in the latter part of the week as investors had reason to shift their focus back toward 2017-Q2, with stock prices behaving accordingly.
Stock prices aren't the only data that suggest that a partial shift in focus for how far forward in time investors are looking took place during Week 3 of May 2017. U.S. Treasury futures also communicated similar information, as Mike Shedlock observed:
The futures market is starting to question the June rate hike thesis. For its part, the bond market is behaving as if the Fed is hiking the economy into a recession. Here are some pictures.
June Rate Hike Odds
No Hike in June Odds
- Month ago – 51%
- Week Ago – 12.3%
- Yesterday – 21.5%
- Today – 35.4%
The CME Group provides this data through its FedWatch tool, which uses futures contracts for the Federal Funds Rate to divine the probability that the Fed will hike that particular interest rate by the various upcoming meeting dates of the Federal Reserve's Open Market Committee (FOMC). They've been providing that kind of insight from futures contracts since at least the last quarter of 2015.
We've been using dividend futures to do somewhat similar analysis, where the Fed has often had an outsized role in determining how far forward in time investors in the U.S. stock market focus their attention, where our dividend futures-based model can explain a good portion of why stock prices behave as they do whenever investors shift their forward looking attention.
At least, when that information is combined with the more significant market moving breaking news of the week....
For the week's major economic data points, be sure to check out Barry Ritholtz' succinct summary of the week's positives and negatives.
Note: Following our confirmation of the CBOE's decision to terminate reporting its implied future DVS indicators at the end of April 2017, we switched to using the CME Group's S&P 500 Quarterly Dividend Index Futures quotes in their place for our analysis, with the changeover taking place on 11 May 2017. The change in data source accounts for the apparent volatility on that date for the alternative future trajectories that our model projects for the S&P 500 for when investors would be focused on either 2017-Q3 or 2018-Q1 in our chart above.
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.