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
Through Friday, 22 April 2016, the pace at which publicly-traded U.S. companies are cutting their dividends is much higher than what was recorded at the same point of time during the first quarter of 2016.
But compared to a year ago, the rate at which U.S. firms are cutting dividends is about the same, if slightly ahead of schedule on account of the way that weekends and holidays are falling in the current year.
In 2015-Q2, although the quarter started off sluggishly, economic conditions improved as the quarter went on, which was reflected in a slowing rate for newly announced dividend cuts. Which ideally should be the case following the immediately preceding quarters that have been characterized by an elevated number of announced dividend cuts, particularly for firms that set the amounts of their cash dividend payments independently of their earnings. Simply put, if they assess their business' outlook for the future adequately, they shouldn't need to take the painful action of announcing further dividend cuts.
One company that has announced a dividend cut in 2016-Q2 didn't pass that test: Noble Corporation (NYSE: NE), which had previously announced a significant dividend cut in October 2015. The company's owners and management had previously reduced their quarterly dividend by 60% from $0.375 per share to $0.15 per share, which has now been decreased by 87.6% from that lower level to $0.02 per share as the company attempts to improve its fiscal situation.
So far in 2016-Q2, we've acquired a sample of 18 firms announcing dividend cuts, 13 of which are unsurprisingly in the oil and gas industries, 2 in finance, and 1 each in the mining, technology and real estate investment trust sectors of the stock market. Through the same number of days of trading in 2015-Q2, we saw 15 firms announce dividend cuts a year ago, with 12 in the oil industry and 3 in the mining industry. The economic distress in 2016-Q2 is therefore still largely concentrated in the oil sector, but is more broad-based than we observed a year ago.
Meanwhile, as expected, the S&P 500 did little more that largely move sideways during the third week of April 2016.
For reference, here are the week's most influential headlines, which when combined with the expectations that investors have for the future, largely explain why the S&P 500 went mostly nowhere during Week 3 of April 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.