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
In order to sustain dividend payments to their shareholders, companies generally need to have a couple of things going for them:
If either one of these things falls short on a sustained basis, the company may need to reduce their dividends. And that, of course, is almost universally bad for share prices, given the basic fundamentals for how stock prices work.
That in turn is bad for the company's primary owners and managers, who in addition to taking a financial hit on the shares of stock they might own in the company, also have to deal with a large number of very angry shareholders who weren't part of the decision, whose anger might force changes in the company's business practices and executive ranks.
So whenever a company acts to cuts its dividends, it's a pretty good indication that the company is experiencing some kind of real economic distress, because the outcome of that action is something that the company's primary owners and managers would seek to avoid if it were at all possible because of the pain associated with it for them. Yesterday, we showed that the number of U.S. companies acting to cut their dividends is once again consistent with recessionary conditions being present in the U.S. economy:
So is there a connection between companies cutting dividends and the employment situation in the United States?
We've taken the chart we normally use to track the change in the number of employed Americans by age since the total employment level in the U.S. peaked in November 2007, just before economic expansion peaked and the nation officially entered recession a month later, and have indicated with light red shaded lines the periods coinciding with an elevated number of companies cutting their dividends:
What we find is that whenever there are steadily more than 10 companies acting to cut their dividends in any given month, the trend in the number of employed Americans either falls, as when the economy is experiencing a full-fledged recession, or goes flat, as is the case at present, when an improving trend for employment stalls out.
What we observe with the employment situation at present is consistent with our previous observation that the U.S. economy is experiencing a microrecession.
Labels: dividends, jobs, 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.