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
For the S&P 500 (Index: SPX), the biggest story of the second week of December 2019 came with the confirmation the U.S. and China had struck a 'Phase 1' trade deal, which pushed the index to close the week once again at record highs. As of Friday, 13 December 2019, the highest closing value ever recorded for the S&P 500 reached 3,168.80, where though news of the deal broke on Thursday and boosted stock prices near that height, there was just enough momentum to carry the S&P just slightly higher to end the week.
With that trade deal now falling back in the rear view mirror, the second biggest news item of the week offered a glimpse of what might come to dominate the attention of investors in the weeks ahead, because the Federal Reserve met and did nothing, while also establishing the expectation they won't be adjusting interest rates in 2020. The CME Group's FedWatch Tool has captured much of that change in future expectations, where it now gives better than even odds that the earliest the Fed might next cut the Federal Funds Rate would be in the fourth quarter of 2020, though the odds of a rate cut in 2020-Q3 are still close to the 50% mark.
Going by the dividend futures-based model we use to create the alternate futures chart above, a shift in the forward-looking focus of investors from 2020-Q3 to 2020-Q4 would be accompanied by a decline in the S&P 500, in which we would see stock prices drop potentially well below the redzone forecast range, which assumes they remain focused on 2020-Q3 in setting current day stock prices. Should they shift their focus toward the nearer term quarter of 2020-Q1 however, there would be little impact to stock prices because the expectations for the changes in the year over year rates of dividend growth are similar between 2020-Q1 and 2020-Q3.
The random onset of new information would be responsible for driving such a shift in focus, where the following headlines we extracted from last week's news flow provide the context for why we believe investors have largely been focusing on 2020-Q3 in recent weeks.
Meanwhile, Barry Ritholtz itemized the positives and negatives he found in the week's economics 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.