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
Front running is a trading practice that's based on knowledge of the future. If you're a trader and you know that an upcoming event will affect the market, you can make trades that will be to your advantage both before and after the future event takes place.
In the context of the stock market, front running carries a negative connotation because insider trading is often involved. But what if your trade is the business of imports and exports and political leaders have announced they are going to impose tariffs or other trade restrictions on the exchange of goods between countries at a specific date in the future?
In that situation, insider trading isn't an issue, but dealing with the consequences of the political actions on your import/export business is. Once political actions affecting trade between countries are announced, savvy traders will go to work. And one of the tactics they will use to deal with the upcoming event that will affect their business is to front run it to the greatest extent they can. They'll move as many goods as they can ahead of when new tariffs or trade restrictions will go into effect.
Take the example of trade between the U.S. and China. Over the last six months, we've focused a lot of attention on how China acted to frontrun anti-free trade policies announced by the Biden-Harris administration.
The numbers have been big enough to affect the trajectory of the total value of goods traded between the two nations during the latter portion of 2024, moderately reversing what had been a long running downward trend that began after the Biden-Harris announced it would impose restrictions on trade between the U.S. and China in September 2022. The following chart chart shows how the total value of goods traded between the two nations has evolved from January 2016 through January 2025.
Although we've focused on China's exports to the United States in our coverage of the practice of front running in this trade, that practice has also been used to boost U.S. exports to China for the same reason of beating the clock on the new anti-free trade actions by the governments of the two nations.
We are planning an upcoming feature in the near future that will focus on some major anomalies that developed in the importing and exporting of goods to and from the U.S., at least one of which involves U.S. exporters frontrunning the Biden-Harris administration's trade sanctions. Anomalies so large they are materially affecting economic growth forecasts and the measure of the U.S.' gross domestic product.
We're also planning a separate feature to close the books on the Biden-Harris administration's anti-free trade policies, where we'll definitively answer the question of whether they had a larger or smaller impact on trade between the U.S. and China than the policies adopted by President Trump during his first term in office.
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 March 2025.
Image credit: Photo by Zalfa Imani 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.