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
The S&P 500 closed out the third week of September 2018 on an upnote, but not by so much that it resumed setting the kind of new record highs that it was just a few weeks ago.
The following chart shows the latest update to our spaghetti forecast chart for the trajectory of the S&P 500, where we find that investors would appear to be currently splitting their forward-looking attention between the future quarters of 2018-Q4 and 2019-Q1, with a somewhat heavier focus on 2019-Q1.
As for why investors would appear to be looking at these two future quarters in particular, we suspect that it has a lot to do with the Federal Reserve's plans for changing its Federal Funds Rate (FFR), the interest rate that banks pay for borrowing money from the Fed, which sets the floor for short term interest rates in the United States. When we last reported upon investor expectations for the future for the FFR just over a month ago, investors were anticipating that the Fed would hike that rate by a quarter point twice more in 2018, in both September and December, then take a breather until June 2019 before doing it again.
Since then, the combination of reports of continued strength in the U.S. economy with multiple statements by the Fed's minions in recent weeks is giving investors reason to anticipate that there will be no breather in the Fed's latest series of short term interest rate hikes. The following table indicates what the CME Group's FedWatch tool anticipates for the future of the Federal Funds Rate based on information from the FFR futures market. (Please click here to view a screen shot of the table if you're reading this article on a site that republishes our RSS news feed, but which doesn't properly render the table.)
Probabilities for Target Federal Funds Rate at Selected Upcoming Fed Meeting Dates (CME FedWatch on 14 September 2018) | |||||||
---|---|---|---|---|---|---|---|
FOMC Meeting Date | Current | ||||||
175-200 bps | 200-225 bps | 225-250 bps | 250-275 bps | 275-300 bps | 325-350 bps | 350-375 bps | |
26-Sep-2018 (2018-Q3) | 0.0% | 97.4% | 2.6% | 0.0% | 0.0% | 0.0% | 0.0% |
19-Dec-2018 (2018-Q4) | 0.0% | 20.0% | 77.0% | 3.0% | 0.0% | 0.0% | 0.0% |
20-Mar-2019 (2019-Q1) | 0.0% | 8.0% | 41.9% | 45.0% | 5.0% | 0.1% | 0.0% |
The table confirms that investors are now anticipating quarter point rate hikes in September 2018 and December 2018. In addition, as of the last week, investors are now also given just over a 50% probability that the Fed will again hike interest rates by another quarter point or more in March 2019 (as can be determined by adding the probabilities in the table cells highlighted in yellow for the Fed's March 2019 meeting).
That assessment isn't just based on this data. It's also based in part from the news reports we reviewed during the third week of September 2018, where the following stories appeared noteworthy in describing the noise in the market.
For additional aspects of the week's economics and markets-related news, be sure to check out Barry Ritholtz' list of the positives and negatives he found in the week's data.
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.