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
2019 is off to a rollicking start for the S&P 500 (Index: SPX), which appears to have launched into its first Lévy flight event in 2019.
If that's not a term you're readily familiar with, here's what that means. A Lévy flight is similar to a random walk for stock prices, but instead of the relatively small changes in stock prices that characterize a true random walk, it is characterized by the sudden emergence of comparatively large changes - more so than would be predicted by a normal distribution.
From our perspective, Lévy flight events can occur whenever investors shift how far forward in time they are looking into the future as they go about setting current day stock prices, where the differences in expectatations for the sustainable portion of future earnings associated with these different points of time drive these outsized changes in stock prices. For the first Lévy flight event of 2019, that shift appears to be from the distant future quarter of 2019-Q4 back to the current quarter of 2019-Q1.
It was even sort of predictable, where we described what would happen if investors acted to shift their forward-looking attention just as they appear to have, well before the market even opened last week.
- If investors remain focused on the distant future quarters of 2019-Q3/2019-Q4, the S&P 500 can be expected to generally follow a downward trajectory throughout 2019-Q1, falling into a true bear market for the index.
- If investors shift their attention toward 2019-Q1, the effect would be to boost stock prices higher, where they would largely move sideways during the quarter with respect to their current level.
- Should investors shift their forward-looking focus to 2019-Q2, the market would see a significant rally above its current level.
Investors chose Door #2 in this real-life Monty Hall problem!
Meanwhile, because we've now entered the period of time where it will be relevant, we've redrawn our redzone forecast to correspond with this selection, anchoring its starting point with where the S&P 500 closed on Friday, 11 January 2019. If you want to know more about our assumptions in generating the forecast, we've incorporated them in the annotations on the chart.
With the Fed's future actions now fading into the background noise after dominating much of the market-related news headlines last week, we can perhaps look forward to investors sustaining their focus on 2019-Q1 as earnings season gets under way in the week ahead. That should mean the end of the first Lévy flight event of 2019, with smaller stock price movements from day to day, but this is also when a number of companies will change investor expectations for the future, which can change stock prices as investors rapidly absorb all new information.
Speaking of new information, here are the major market-moving headlines from the past week....
Barry Ritholtz listed the week's positives and negatives in his weekly succinct summary of the major economics and market-related news, and deployed the word "stalement"! What does that mean? It's defined in the Urban Dictionary!...
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.