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
From time to time, the S&P 500 (Index: SPX) experiences Lévy flight events. These are periods where stock prices move by a much larger-than-typical amount, which coincide with changes in the forward time horizon of investors.
The stock market's first Lévy flight event of 2021 took place during the third week of January. Here, Netflix' (NASDAQ: NFLX) announcement they would no longer need to borrow to finance the cost of new programming prompted investors to shift their forward-looking focus outward, from 2021-Q2 to the distant future quarter of 2021-Q4. That kind of change constitutes a Lévy flight event for the stock market, which directly coincides with larger-than-typical changes in stock prices.
The final week of January 2021 saw that process play out in reverse, as investors shifted their forward-looking focus back to the nearer term future quarter of 2020-Q2 in the second Lévy flight event of the year. The latest update to the alternate futures chart shows these changes against the backdrop of the various levels dividend futures-based model projects the S&P 500 would be based upon how far into the future investors are fixing their attention in making current day investment decisions.
As Lévy flight events go, the recent volatility in stock prices caused by these shifts of investor time horizons has been relatively muted. While crossing the threshold of being "interesting", which we define as the S&P 500 changing in value by two percent or more at the close of trading from the previous day's closing value, the expectations for changes in the growth rate of dividends per share at the future points of time investors have focused upon aren't very different from one another, which accounts for that muted performance.
On the other hand, if investors were to suddenly focus on 2021-Q1, we would see a much larger, downward move in stock prices from their current levels, which would be driven by new information. Speaking of which, here is our rundown of the new information to which investors reacted during the last week of January 2021.
Over at The Big Picture, Barry Ritholtz lists the week's positives and negatives he plucked from the economics and markets news streams!
In this edition of our S&P 500 chaos series, we haven't addressed the "David vs Goliath" story going on with the short squeeze of stocks like GameStop (NYSE: GME) and AMC Entertainment (NYSE: AMC). While fascinating in and of itself, the battle between retail investors and hedge funds has barely budged the bar for the S&P 500 index as a whole, which is our primary focus for this series.
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.