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
In the chart above, we've overlaid the timing of the official periods of recession for the U.S. economy and also the entire span of the Dot-Com Stock Market Bubble, both of which are things that you would think would affect the number of publicly-traded firms in the U.S., but which turn out to not be so important.
Recessions, for example, are things that you would think would coincide with falling numbers of firms in the U.S. stock market, but for the five recessions shown in the chart, three occur when the number of listed firms was rising, while the other two just happen to fall in the middle of longer term declines in the number of publicly-traded companies in the U.S.
Meanwhile, you might reasonably think that the inflation phase of the Dot Com Bubble from April 1997 through August 2000 would coincide with a rising number of U.S. firms listed on U.S. stock exchanges, but instead we see that the number of listed firms peaked more than a year before the Dot Com Bubble even began to seriously inflate, where the number of public firms in the U.S. has typically fallen in each year since its peak in 1995-1996.
More remarkably, the rate at which U.S. firms delisted between the end of 1996 through 2003 was steady, spanning both the inflation and deflation phases of the Dot Com Bubble. It's only after 2003 that the rate slowed, before falling more rapidly again in the period from 2008 through 2012.
After 2012, we have a break in the data series we used to construct the chart, which may account for the apparent increase in listed firms from 2012 to 2013. However, perhaps the more important takeaway is that the decline in the number of listed U.S. firms has continued from 2013 through the present, where it has now reached the lowest level on record for all the years for which we have this kind of data.
Doidge, Craig, Karolyi, G. Andrew and Stulz, Rene M. The U.S. Listing Gap. Charles A. Dice Center for Research in Financial Economics. Dice Center WP 2015-07. Table 5. Listing counts, new lists, and delists. U.S. common stocks and firms listed on AMEX, NASDAQ, or NYSE, excluding investment funds and trusts. [PDF Document]. May 2015.
Wilshire Associates. Wilshire Broad Market Indexes, Wilshire 5000 Total Market Index Fundamental Characteristics. [2013, 2014, 2015 (for month ending 06/30/2015), 2016 (for month ending 06/30/2016)].
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.