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
Generally speaking, the change in the expected rate of growth of stock market dividends per share at certain points in the future is directly proportionate to the change in the rate of growth of today's stock prices.
But the stock market is a noisy place. Stock prices are often influenced by investor reactions to short-term events that result in the change of the growth rate of stock prices deviating from the level that the expected change in the growth rate of their underlying dividends per share would place them, which we recognize as noise.
Noise is always present in the stock market to some extent. Most often, it is the result of the thousands upon millions of interactions between the buyers and sellers of shares that occur every day that accounts for much of the typical level of noise we observe in the stock market, which most often results in the small deviations we observe between the change in the growth rate of stock prices with the expected future change in the growth rate of the market's dividends per share.
From time to time however, the emergence of large amounts of noise in the stock market can cause substantial deviations of stock prices from the fundamental signal being sent by the expected future levels of dividends per share. We call these "noise events".
When a noise event develops, it can either be an opportunity or a calamity for investors depending upon which direction the noise is breaking and whether investors are considering buying, selling or holding stock, because large noise events are always temporary in duration. They may last days, or months, but they always end and the stock market will resume following the fundamental signal sent by the market's underlying dividends per share, which best captures the expectations of investors for the future.
With all that in mind, here's where the market stands today:
The question of whether that represents an opportunity for you, or a calamity, still remains - that's really only something that you can answer!
Labels: chaos, investing, SP 500, stock market
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.