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 U.S. and China represent the two largest national economies on Earth. Since President Trump's 2 April 2025 "Liberation Day" global tariff announcement, trade between the two nations has plummeted by 39%. Just released data for February and March 2026 however indicates a bottom is forming in the combined value of goods that are being directly exchanged between the two countries.
That's a lot of information to unpack, so let's get to it!
The 39% decline in trade between the U.S. and China represents the percentage difference between the actual combined value of goods traded between the two nations through March 2026 and a counterfactual based on a simple straight-line projection of what a rolling twelve month average of that trade would have looked like had it continued following the same trajectory it was on from March 2024 through March 2025.
The counterfactual projection would have seen the value of US-China trade clock in at $50.3 billion in March 2026. Trade data reported by the U.S. Census Bureau in March 2026 indicates the actual rolling twelve month average of trade between the U.S. and China was $30.7 billion. The following chart shows both the counterfactual projection (the red-dashed line) and the actual rolling twelve month average (the thick solid black line), where the current decline has taken place starting from April 2025.
The chart also shows the rate at which the actual rolling twelve month average is plummeting is starting to slow. That's mainly because the level of direct trade between the U.S. and China is stabilizing at a level between $27 billion and $34 billion per month, as indicated by the actual monthly data (the thinner purple line).
Looking again at the counterfactual and rolling twelve month average data, we estimate the cumulative loss of direct trade between the U.S. and China in the twelve months from April 2025 through March 2026 is $128.1 billion.
To put that level of trade into perspective, economist Gita Gopinath indicates that "China’s share in US imports at 9% is back down to what it was right before China joined the WTO (2001)."
Regular readers will note a change in how we're describing the U.S. Census Bureau's trade data for goods exported to and from the U.S. and China, which we now describe as "direct" trade. That's because of other trade research that finds a lot of trade is still occurring between the U.S. and China, which is being passed through other nations as intermediaries, particularly in southeastern Asia. In effect, the true national origin of those goods is being masked in both the U.S. and China's official trade data as appearing to be going to and from other nations.
U.S. Census Bureau. U.S. International Trade in Goods and Services (FT900). U.S. Trade in Goods with China, Not Seasonally Adjusted, Nominal Figures, Total Census Basis. [Online database]. Accessed 5 May 2026.
Image credit: A large crane beside an empty container ship in Lianyungang, China photo by Bing Zhang on Unsplash.
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.