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 July 2019, the gap between the pre-trade war trend and the trailing twelve month average of the value of goods exchanged between the U.S. and China expanded to $10.4 billion. The cumulative gap since the first tariffs were imposed in March 2018 has now grown to $62.8 billion.
That cumulative gap is measured with respect to a counterfactual trend, which represents what the total value of direct trade between the U.S. and China could reasonably have reached in the absence of the two nations' tariff war.
There is another way to assess the direct economic losses that have accumulated in the value of trade between the two countries as a result of the tariff war. We can compare the current downturn in the actual recorded trailing twelve month average of the value of goods and services exchanged between the U.S. and China with previous downturns, as indicated by the heavy black line on the above chart.
Going back to the Great Recession, the trailing twelve month average of trade between the U.S. and China peaked at $34.3 billion in October 2008, which then proceeded to drop to a low of $30.0 billion in October 2009 before beginning to recover. That $4.3 billion drop in value represents a decline of 12.5%, or one-eighth the combined value of goods and services traded between the U.S. and China.
Ten years later, the trailing twelve month average in the value of direct trade between the U.S. and China peaked at $55.7 billion in October 2018 and has since experienced a $4.9 billion drop in value through July 2019, exceeding the nominal loss of direct trade recorded during the Great Recession, the worst economic downturn since the Great Depression of the 1930s.
In percentage terms, the loss in trade coinciding with the U.S.-China tariff war represents 8.7% of the peak in the trailing twelve month average value of goods exchanged between the two countries. To match the Great Recession's overall percentage trade volume losses, the trailing twelve month average of trade between the U.S. and China will have to fall by another $2.1 billion, to $48.7 billion.
Assuming nothing changes in the U.S-China trade war to affect its current rate of decline, that level could be reached in or by November 2019.
Labels: trade
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.