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
Over the past eight trading days, the S&P 500 is doing something highly unusual in having declined in value from the previous day's closing value in each of those days. How unusual can be seen in the following chart that we first presented last year as we mapped out the S&P 500's losing streaks since 3 January 1950.
Before this week, we see that since 3 January 1950, the S&P 500 has had losing streaks run eight trading days or longer some 21 times, with 10 of those streaks lasting exactly eight days before the index finally recorded an up day to break its losing streak.
We built the following tool to estimate the odds of that happening and also the likelihood that the S&P 500 might extend its current streak to nine consecutive trading days in a row. If you're accessing this tool on a site that republishes our RSS news feed, just click through to our site to access a working version....
We find that for the S&P 500 to have fallen in each of the previous eight days, the approximate odds of it having done so are 1 in 1,262.
The odds of a losing streak in the S&P 500 lasting for eight days isn't quite as unlikely as it may appear - it's actually a bit more likely than the odds that an American will die in a year from any accident or injury (1 in 1,656).
But for it to go nine days in a row would be a 1 in 2,583 event. And there is roughly a 1 in 2 chance that it will happen.
As for why, while recent reporting has focused on "U.S. election nerves" as a contributing factor, there may also be more fundamental factors at work.
Compare this chart to the previous version we showed just four days ago.
We don't know yet if the sudden increase in the number of dividend cuts announced during the first three days of November 2016 is simply noise or if there's more to it. The cumulative number of dividend cuts announced since 2016-Q4 began however does point to cause for concern.
As for which companies have announced dividend cuts in November 2016, our real-time sampling of dividend declarations indicates that it is a pretty broad based list in terms of affected industries: HCP (NYSE: HCP), New York REIT (NYSE: NYRT), Horizon Tech Finance (NYSE: HRZN), Sturm Ruger (NYSE: RGR), Melco Crown Entertainment (NASDAQ: MPEL), Teekay Tankers (NYSE: TNK), Sabine Royalty Trust (NYSE: SBR), First Mid-Illinois Bancshares (NYSE: FMBH), Terra Nitrogen (NYSE: TNH).
The market will bear close watching over the next several weeks.
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.