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
Coming into the third week of June 2020, we introduced two hypotheses for what caused the sharp, sudden, and now sustained deviation in the trajectory of the S&P 500 (Index: SPX), which rose on the week, but not by anywhere near enough to recover to its previous trajectory.
The two hypotheses for what caused the S&P 500 to plunge by 5.9% on Thursday, 11 June 2020 can be summarized as follows:
Through the close of trading on Friday, 21 June 2020, we find the level of the S&P 500 is still consistent with what a dividend futures-based model would predict for both hypotheses, but that state of affairs will almost certainly change in the week ahead.
As shown in the alternative futures forecast chart above, the model anticipates the level of the S&P 500 will rise significantly in the week ahead to follow the trajectory associated with investors fixing their attention on the near-term future of 2020-Q3 if the Lévy Flight hypothesis holds, assuming they have not changed their expectations for how expansionary the Fed's monetary policies will be going forward following the end of its last meeting on 10 June 2020.But, if the shift that occurred on 11 June 2020 was the result of a change in expectations for the Fed's monetary policies, where the amplification factor in the dividend futures-based model suddenly changed to become less negative than it has been, we will see the trajectory of the S&P 500 start to consistently underrun the levels projected by the model as shown on the alternative futures chart above, which currently assumes no change in the amplification factor since 12 April 2020.
There's also the possibility that both things we've hypothesized could have happened, but here, we would still see the trajectory of the S&P 500 underrun the model's projections as currently shown on the chart above, which would allow us to reject the first hypothesis because of its assumption that there was no change in investor expectations for how expansionary the Fed's monetary policies will be.
With the stock market's behavior so interesting, this is definitely a fun time for us. Perhaps not as much fun as the first time we took advantage of a natural experiment with the S&P 500, but we're learning quite a lot in near real time!
Elsewhere, Barry Ritholtz presents a succinct summary of the positives and negatives he found in the week's markets and economy news.
Update 24 June 2020: It looks like we may be able to reject the first hypothesis. With the level of the S&P 500 clearly underrunning all of the dividend futures-based model's projections, as the index dropped 2.6% today to close at 3,050.33, it looks like we will be able to rule out this hypothesis because of its assumption that investors did not lower their expectations for how expansionary the Fed's monetary policies will be in the future.
Now the question is how much much of the change is Lévy Flight and how much is change in amplification factor? We'll need to develop two new hypothesis to sort out that question, but unlike this natural experiment, we suspect it will be much tougher to answer.
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.