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
After a brief bit of excitement early in the week, as the market first negatively reacted to Russia's incursion into Ukraine's Crimea province, then positively responded to the apparent de-escalation of the developing conflict the next day, the rest of the week for the S&P 500 was pretty boring.
So much so, in fact, that we didn't even need to update our notes in the margin of our chart showing the shifting of the change in the rate of growth of stock prices (or rather, the acceleration of stock prices) against the changes in the rates of growth of expected future dividends per share (or rather, expectations):
Overall, it would appear that investors have set their forward-looking focus on 2014-Q4 in setting today's stock prices, which held through the minor noise event of the Crimean situation.
That's a little easier to see in the updated version of our chart showing the likely trajectory of stock prices for each of the next three quarter's worth of alternate futures for the market:
This chart is quite a bit different from the version we were previously presenting with our weekly comments. In that older version of the echo-free chart, the data were were displaying for each alternate future after 29 January 2014 was based on the snapshot of expected future dividends from that day. (The data from 2 January 2014 through 29 January 2014 is unchanged).
The new version of the chart takes the daily changes in expectations for dividends to be paid in future quarters after 29 January 2014 into account. That there is so little difference in the alternate future trajectories illustrates how small the changes for dividends announced during February 2014 were.
In the chart, all the data indicated from 7 March 2014 forward is based upon the snapshot of dividends we took on that day. In the absence of noise or significant changes in the outlook for future dividends, we would anticipate that stock prices will fall within the ranges indicated for each, depending upon which future quarter investors set their forward looking focus.
We're not showing the futures for the first quarter of 2014, which for dividend futures, will end on 21 March 2014. At this point of time, those values are effectively locked in, so there's little reason for investors to focus any amount of attention on the current quarter. Soon after that date however, we'll begin to have a window open on what the dividend futures for the first quarter of 2015 look like, so we'll be adding a fourth alternate future trajectory to the chart.
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.