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
How is the pace of dividend cuts in the U.S. stock market during 2016-Q2 coming along compared to the previous quarter? And how does that compare to the pace of dividend cuts that was recorded in the year ago quarter of 2015-Q2?
The last time we answered these questions was six weeks ago, so now that we're in the home stretch for 2016-Q2, let's find out how the pace of dividend cuts announced in the quarter has progressed. Our first chart below updates our chart comparing the pace of dividend cuts between 2016-Q1 and the current quarter of 2016-Q2.
We find that the number of dividend cuts announced in 2016-Q2 through Friday, 17 June 2016 puts it in the borderline range that falls between recessionary conditions being present in the economy and outright contraction occurring within the economy. This marks an improvement over the past six weeks that suggests that the U.S. economy is relatively healthier now than it was just weeks ago.
But how does that compare to the year ago period? Our second chart reveals the differences between the current quarter of 2016-Q2 and the year ago quarter of 2015-Q2.
Going by the measure of the number of announced dividend cuts that we've been able to track through our two main sources, the U.S. economy in 2016-Q2 is unequivocally slightly worse than it was in 2015-Q2. We can confirm this in that the total number of dividend cuts with nearly two weeks remaining in the second quarter of 2016 is already higher that the level that our two sources recorded in the same quarter a year earlier.
At the same time, although they have generally followed a similar trajectory through this point in time, dividend cuts in 2016-Q2 have typically been announced sooner than they were in the year ago quarter of 2015-Q2.
Consequently, we would describe the economic trajectory of 2016-Q2 as very similar to 2015-Q2, although having come out of a worse first quarter of the year.
We don't anticipate many additional dividend cuts to be announced through the remainder of June 2016, so unless that significantly changes, we won't visit these charts again until after the end of the calendar quarter.
Next, let's update our chart showing the trajectory of the S&P 500 with respect to the alternate trajectories that our futures-based model of how stock prices work would project.
In Week 3 of June 2016, the S&P behaved largely as our model would predict if investors are focused on the distant future quarter of 2017-Q1 in setting today's stock prices.
As for why that might be, let's review the headlines we considered to be significant in explaining the behavior of stock prices in the trading week ending on Friday, 17 June 2016.
Seeking Alpha Market Currents Dividend News. [Online Database]. Accessed 17 June 2016.
Wall Street Journal. Dividend Declarations. [Online Database]. Accessed 17 June 2016.
Labels: chaos, dividends, SP 500
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.