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
With the news last Friday, 4 September 2015 that the employment situation in the U.S. economy was not as bright as had been expected, once again opening the door to the possibility that the U.S. Federal Reserve might pull back from its plans to begin hiking short term interest rates by the end of this month, it shouldn't come as a surprise to any of our readers that the S&P 500 fell from where they would be if they were closely focused on 2015-Q3 in setting the value of stock prices in the direction of where they would be if they focused on 2016-Q1 instead.
But not so significantly as to be distinguishable from the typical level of noise for U.S. stock prices. Yet. We'll see how the month plays out....
In the mean time, now that stock prices have somewhat stabilized, let's take a quick look at how the future through the end of 2015 is shaping up.
In this chart, we assume that there will be no significant net erosion of expected future dividends per share. If there is a net erosion, we can expect that these likely trajectories based on how far ahead investors are looking in time will appear somewhat optimistic. Conversely, they will appear to be pessimistic if there is a positive change in the expected growth rate of dividends per share.
That kind of dynamic is why October will likely be a volatile month for the stock market. Especially since September 2015 was so quiet, even though the same conditions that preceded the "oil spike" shown in the chart below took hold once again during the month....
We somewhat know in advance that 2015-Q4 will likely not be a positive one for U.S. oil and energy companies, unless they can show that the rate at which their future business is getting worse is starting to decelerate and reverse. The big question yet to be answered is how many other companies will take advantage of the opportunity of the upcoming earnings season to adjust their own dividend targets to be easier to hit.
Because if there is ever a right time for a CEO to make such an announcement, it is when their peers at other companies are annoucing that they are cutting their own dividends. They are a lot like startled starlings that way.
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.