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
Sometimes, for the S&P 500, the more things stay the same, the more they change.
By staying the same, we're referring to the relative lack of change in the closing value of the S&P 500 on each trading day of the first week of April 2017.
But over Week 1 of April 2017, we see a change in the future expectations that investors have. Specifically, investors would appear to have flipped the relative probabilities that they were assigning to the likelihood that the Fed will next hike interest rates in 2017-Q2 and 2017-Q2 from where they had set them a week earlier.
At that time, we estimated that they were giving a 55% chance of the Fed's next short term interest rate hike taking place in 2017-Q3 and a 45% chance that it would happen in 2017-Q2.
This week, thanks to the heavier weight of positive economic news that came out during the week, it appears that those relative probabilities have reversed to where investors are giving a 55% chance that the Fed will hike U.S. interest rates before the end of the quarter, and a 45% chance they'll hold off on doing so until the next quarter.
And all stock prices had to do to communicate that change in expectations was to mostly drift sideways to slightly lower as investors modestly reacted to the non-market moving news released throughout the week, where even the surprise U.S. bombing of Syria following reports of its government's use of chemical weapons in its civil war did little to roil the U.S. stock market.
That's not to say that other markets were not greatly affected by other news that came out during the week, but since we focus on the S&P 500, we have to play the cards that we've been dealt....
Speaking of which, here are the headlines that stood out from the pack for Week 1 of April 2017.
Elsewhere, Barry Ritholtz categorizes the week's positives and negatives for the U.S. economy and markets.
Finally, on a programming note, since U.S. markets will be closed on Friday, 14 April 2017, so will we! Have a great, short week!
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.