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
Last week, we declared the end of the Bernanke Noise Event - that brief eruption of uncertainty that sent stock prices falling after some poorly chosen comments on the part of Fed Chairman Ben Bernanke regarding the timing of when the Fed would begin tapering off its direct injection of money into the U.S. economy. The Fed had spent the next several weeks doing damage control and had finally set things close to right (see chart below).
But then somebody at the White House, perhaps upset at seeing the impact that Bernanke and various members of the Fed had upon the markets with just their words, decided that they needed have their own negative noise event too. Which they would appear to have launched by floating a trial balloon proposing that Larry Summers, the former Obama economic adviser previously best known for sleeping through White House meetings, who is perhaps now becoming better known for apparently neither understanding nor believing in the kind of successful monetary policy that has been keeping the U.S. economy out of a full-fledged recession since September 2012, was President Obama's leading choice to replace Ben Bernanke after his term as Fed Chair ends in January 2014.
Our chart below tracks how investors have reacted to the news:
Right now, given the fundamentals of how stock prices work, stock prices should be rising as the change in the growth rate of stock prices should be keeping pace with the level indicated by the currently expected change in the growth rate of their underlying dividends per share for 2014-Q1, which is where the Fed succeeded in restoring the forward-looking focus of investors by the end of the Bernanke Noise Event.
Instead, stock prices are tracking mostly sideways in response to the uncertainty provided by the White House's new negative noise event, which we see in the form of a negative impulse for the daily track of the acceleration of stock prices, as investors are reacting negatively to the prospect.
Just hope that the trial balloon pops. The alternative futures available for investors to focus upon aren't anywhere near as good as that described by the acceleration of dividends expected for 2014-Q1.
If you're just discovering our brand of analysis now, here's a good part of the electronic trail for how we got to this point! First up, the basic theory we've developed and where we get our data:
Next, that electronic trail of analysis we've provided throughout the event:
We tossed the last link in because we're well aware that the vast majority of our readers encounter our articles elsewhere on the web! Come and visit us, if for no other reason than it's the one place on the web where our work appears, and in the case of the tools we develop, works, just about exactly as we intended!
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.