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 relative period of order for the S&P 500 that began back on 31 March 2016 has come to an end.
The breakdown of order in the S&P 500 became clearly evident on 11 January 2018, when the level of the S&P 500 surged to be more than three standard deviations above the mean trend curve that has described the relationship between stock prices and their trailing year dividends per share since the end of the first quarter of 2016. Tracing this break in trend backwards to when it first took hold, we find that the last day that the previous period of relative order could be reasonably be said to have held is 29 December 2017, the last day of trading at the end of the fourth quarter of 2017, which is when stock prices were last within one standard deviation of the established mean trend curve.
That makes the explanation for what caused the break in order relatively easy to determine. We believe that it may be fully attributed to the passage of the Tax Cuts and Jobs Act of 2017 on 22 December 2017, the provisions of which would take effect in 1 January 2018, to which investors would respond vigorously to their new incentives from the law beginning with the first day of trading in 2018 on 2 January 2018. It then took just eight trading days for the break in the previous period of relative order in the U.S. stock market to become definitive.
The new incentives for investors arise from the large and permanent reduction in corporate income tax rates, where investors may benefit by realizing larger dividend payments, by companies using their newly-freed funds to increase their productive investments, to lower their prices to consumers to gain market share, to better insulate themselves against having arbitrarily higher costs from government-mandated expenses imposed upon them (firms boosting the wages of their lowest paid employees can be said to be taking this action), or to simply use the opportunity of the newly-freed funds to improve their balance sheets. Or some combination of any or all of the above.
In a number of ways, the initial response of the stock market to the passage of the Tax Cuts and Jobs Act of 2017 is similar to what happened to stock prices following the passage of the Tax Relief Act of 1997, which caused the Dot Com stock market bubble to inflate. Unlike that event, where the differences in tax rates between dividends and capital gains changed the rate of return math for investors with dramatic and unstable effects upon stock prices, the changes that U.S. firms make in response to the Tax Cuts and Jobs Act of 2017 are much more likely to affect the fundamental expectations that investors have for their future business prospects, making a similar bubble unlikely.
No matter what, the U.S. stock market has entered into a very different period than it was before. How will that affect your investment decisions?
Labels: data visualization, dividends, SP 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.