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
Inflation ruled the headlines in the trading week ending on Friday, 11 June 2021. But perhaps the most surprising outcome of the higher than expected inflation data that came out on Thursday, 10 June 2021 was its the effect of the report on U.S. stock prices. They rose to close at new record highs after the Bureau of Labor Statistics' Consumer Price Index report for May 2021 became public.
From our perspective, the S&P 500 (Index: SPX) appears to be behaving consistently with investors focusing on the current quarter of 2021-Q2. That assessment assumes the amplification factor of the dividend futures-based model is -5, which may no longer be true. We are closely watching for indications that value has changed in response to the inflation report, where we don't yet have enough information to confirm a change. We may be revisiting this initial assessment as early as next week, because we're also on the cusp of when the focus of investors will be forced to shift to another point of time in the future, if it hasn't already.
The May 2021 inflation report is significant enough that we've gathered a range of analysis from investing professionals related to the main question it raises: Is it a short-term "transitory" affair or will it have long-lasting legs? Here's a short roundup of analysis on the "transitory" side of the argument:
Here are several arguments favoring the interpretation higher inflation will be with us for an undetermined time to come:
And one last take, from RaboBank, which considers both possibilities:
And you thought it was going to be a dull summer! Let's close by rounding up the market-moving headlines of which we took note during the week that was....
Normally, we'd point to Barry Ritholtz' weekly succinct summation of his list of positives and negatives for the economy and markets at this point. Alas, he presented none of either this week!
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.