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
The S&P 500 (Index: SPX) continued its pattern of recent weeks, briefly dipping outside its redzone forecast range before rallying to rise back into it.
Thanks to the week's developments, we can now attribute the recent deviations outside the range to noise associated with the debt ceiling negotiations within the U.S. government. That noise contributed to a rise in very short term U.S. Treasury yields, which in turn, negatively impacted on the tech stocks that institutional investors hold to hedge against rising interest rate risks. For the S&P 500, tech stocks make up the most heavily weighted components of the index, so the index declined until U.S. politicians reached a deal to bump up the U.S. government's debt ceiling.
Of course, being who they are, the politicians only kicked the can down the road, where this exercise is likely to be repeated later this year.
Otherwise, the trajectory of the S&P 500 is right about where it should be expected to be, as we've entered a relatively short period where the echoes of past volatility in stock prices are quieter than they've been in previous weeks. That relative quietness means the standard dividend futures-based model forecasts are consistent with the current trajectory of the index. As you can see, that situation won't last long before echoes of past volatility return to skew the model's projections once more, but we'll enjoy it while we can.
In the meantime, here are the market-moving news headlines of note from the week that was:
Did you know there are currently 505 companies' stocks in the S&P 500? If you want to know how much any one of those stocks contributes to the value of the market cap-weighted index, check out SlickCharts' Components of the S&P 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.