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
Here's a neat bit of data that suggests one contributing factor to the stock market's strong performance last year. Did you know the supply of stocks in the U.S. stock market is shrinking? We came across the following chart from Schwab's chief investment strategist Liz Ann Sonders a while ago, which shows the annual change in net new equitives from November 1995 through November 2006:
Of course, the stock market has changed tremendously in size over this time period, so we did a little bit of digging and found where Liz Ann has shown the size of these changes as a percentage of the entire market:
This particular chart is nice in that is shows the relative changes over a longer period of time, going all the way back to 1976 (but ending in September 2006). We can also see that the current decline in the supply of equities is on par with the leveraged buyout boom of the mid-1980s.
How is the U.S. stock market shrinking? For the most part, a huge increase in the amount and number of private-equity buyouts (the chart below shows the 1995 through 2006 timeframe again):
Of course, the real question is why is the U.S. stock market shrinking? Our list of items on our running hypothesis list include:
As we noted above, one of the main beneficiaries of this trend is existing U.S. stockholders, who benefit from having approximately the same supply of money chasing after a declining number of stocks.
The main downside to the same investors? As stocks become more expensive per share, it becomes more difficult to purchase a fixed quantity of new shares. Also, there may be somewhat of a distortionary effect on reported company financials, such as earnings per share, that lead people to do some very stupid things.
Here's a quick example of what we mean. Let's assume that a company's earnings (profits) are unchanged when reported year over year. Here, the company's decreased number of shares will tend to make its stock look as if the company's actual earnings have increased (as measured by earnings per share), which might fool some relatively clueless observers (namely, unsophisticated investors, reporters and politicians) into believing that the company is still growing its profits.
While an unsophisticated investor might only lose some money on their investment, the combination of reporters and politicians is more dangerous in that the unscrupulous among these groups might point to a company's or sector's "record" earnings per share and begin calling for a windfall profits tax to be imposed upon them, ignoring whether or not these are "real" profits.
This scenario represents the real losing situation for the U.S., as these kinds of taxes make the U.S. economy less attractive in which to do business!
But hey, that's just us pointing out the obvious!
Labels: 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.