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
The S&P 500 (Index: SPX) didn't set any new records in the final week of 2019-Q2, but was still high enough to make the first half of 2019 the best for the index since 1997. Which is particularly impressive because that period saw what became known as the Dot Com Bubble begin to inflate.
Rather than look backwards however, let's look forward in time, through what our dividend futures-based model portends for the S&P 500 in 2019-Q3.
The key to the S&P 500 remaining elevated during the quarter will be for investors to continue maintaining their forward looking focus on 2020-Q1. News that might force investors to shift their attention toward 2019-Q3 or 2019-Q4 will be associated with a significant decline in stock prices, while a shift in their forward-looking focus toward 2020-Q2 would be accompanied by a serious decline in stock prices.
As for what might cause investors to shift their focus to that particularly dismal future quarter, a lot will hinge on whether investors come to anticipate the Fed hiking interest rates a fourth time, with currently one quarter point hike each seemingly set for the next three quarters, at least, according to the Friday, 28 Juen 2019 snapshot of the CME Group's FedWatch Tool:
Here are the headlines we extracted from the flow of news in the final week of 2019-Q2.
Elsewhere, Barry Ritholtz identifies 6 positives and 6 negatives in his review of the last week of 2019-Q2's major economic and market-related news.
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.