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
For the second time in 2018, we find the S&P 500 (Index: INX) in Lévy flight!
The first time kicked off as soon as the stock markets opened in 2018, which lasted to the third week of the month, as investors shifted their forward looking attention from 2018-Q2 to the more distant future of 2018-Q4 in response to the stimulus of tax cuts being implemented in 2018.
But in the final week of January 2018, and really, mostly on Friday, 2 February 2018 (since more days of the week belong to January, we consider it to be Week 5 of that month), investors appear to be finding reason to return their forward-looking attention back to the nearer term future defined by the expectations associated with 2018-Q2. The result is another comparatively large movement in stock prices over a comparatively short period of time, but this time, with stock prices moving in a downward trajectory.
This isn't the first time that we've seen successive Lévy flights occur within a relatively short period of time. For us, the classic, almost textbook example occurred in late August 2015, where stock prices suddenly plunged by 10% in the third week of that month as investors shifted their forward-looking attention from 2015-Q3 to 2016-Q1, before rebounding by over 6% in the following week when investors shifted their focus back to 2015-Q3. In the two months after that, there was another Lévy flight crash and rally that both played out over a slightly longer period of time before volatility in the market settled down.
It's definitely not the kind of normal random walk that Louis Bachelier or Paul Samuelson theorized, although they were close to being on the right track. It's much better thought of as a quantum random walk, where the number of large, sudden changes in stock prices are greater than would be predicted by Gaussian statistics, and if it seems like the market is behaving chaotically, that is because it is.
As for what prompted the sudden shift in how far forward investors were looking in Week 5 of January 2018, here were the week's market moving headlines:
Elsewhere, Barry Ritholtz identified the positives and negatives for the U.S. economy and markets that he saw in the fifth and final week of January 2018, where he found more pluses than minuses.
Finally, because factors that influence how far forward in time investors are looking are very much tied to the prospective actions that the Fed might take with respect to its monetary policies, and particularly the pace at which it might change short term interest rates in the U.S., here are the odds that investors are giving for the Fed hiking interest rates at selected upcoming dates in 2018:
Probabilities for Target Federal Funds Rate at Selected Upcoming Fed Meeting Dates (CME FedWatch on 2 February 2018) | ||||||
---|---|---|---|---|---|---|
FOMC Meeting Date | Current | |||||
125-150 bps | 150-175 bps | 175-200 bps | 200-225 bps | 225-250 bps | 250-275 bps | |
12-Mar-2018 (2018-Q1) | 22.5% | 77.5% | 0.0% | 0.0% | 0.0% | 0.0% |
13-Jun-2018 (2018-Q2) | 6.3% | 37.0% | 53.3% | 3.4% | 0.0% | 0.0% |
26-Sep-2018 (2018-Q3) | 2.6% | 18.2% | 40.8% | 31.5% | 6.5% | 0.3% |
19-Dec-2018 (2018-Q4) | 1.4% | 10.7% | 29.1% | 34.4% | 19.0% | 4.9% |
The other Fed-related factor to pay attention to in 2018 is its plans for drawing down its holdings of U.S. Treasuries and government-issued securities, which would tend to increase yields across the entire Treasury yield curve, which as we saw in Week 5 of January 2018, can have an impact on stock prices.
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.