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
Komal Sri-Kumar is the president and founder of Sri-Kumar Global Strategies who just had a very interesting bit of analysis published by Bloomberg: The Bond Market Is Now a Giffen Good. In this piece, he makes the argument that sovereign debt, such as U.S. Treasuries, may be considered to be a Giffen good, which he explains in his opening paragraphs:
With some $13 trillion of bonds worldwide yielding less than zero percent, it would be easy to characterize fixed-income assets as nothing more than a giant bubble waiting to burst. Those who agree probably haven’t heard of the concept of a “Giffen good.”
Simply put, a Giffen good is a paradox of economics where rising prices lead to higher demand, which is in contrast to the negatively sloped demand curve that students learn in Economics 101. Named after 19th century Scottish economist Sir Robert Giffen, a Giffen good is typically an essential item that, because of its higher price, leaves less resources to purchase other items. (To be sure, many economists debate whether a Giffen good actually exists.)
In terms of the bond market, it’s important to understand that the rapid plunge in yields, especially for sovereign debt, reflects increased concern about the state of the global economy. Those concerns, in turn, only fuel demand for the safest assets even at negative yields, which pushes prices higher and yields even lower.
He goes on to identify three factors (which we've excerpted below) for why the interest rate yields of sovereign bonds and Treasuries are falling, which in the strange world of bond investing, means their prices are going up:
First, inflation rates have been low or declining in the U.S., euro zone and Japan, encouraging investors to allocate more resources to fixed-income assets despite falling yields. High rates of inflation reduce the purchasing power of bond holders, but low rates of inflation do the opposite....
Second, expectations for central bank monetary policy have been kind to bond investors. Ten-year yields have fallen below policy rates in the U.S., Germany and Japan, providing a reason – and pressure - for monetary authorities to reduce rates....
Third, the steep decline in U.S. and German risk-free yields have increased the attractiveness of lower-rated sovereign credits.
How long sovereign bonds and Treasuries might act like Giffen goods remains to be seen, but we should recognize that the conditions that bring Giffen goods into existence are typically transitory. Either those conditions will not endure, or should they persist, at some point, the rising prices that might have initially motivated investors to buy increased quantities of sovereign bonds may grow too high, with demand for sovereign debt sharply dropping off after that point as the Law of Demand reasserts itself.
No one really knows how high that price is. Nobody should want to find out the hard way.
Frank Steindl introduced the concept of Money and Bonds as Giffen Goods back in December 1973, which is the earliest reference to the concept that we can find. It is also the only reference we can find before we began exploring the concept of Debt as a Giffen Good back in May 2009.
Since then, a few analysts have weighed in on the topic, including StatsGuy's Money as the Ultimate Giffen Good at The Baseline Scenario in December 2009, Eric Falkenstein's Treasuries a New Kind of Giffen Good at Falkenblog in August 2011, Kevin Erdmann's discussion of Bonds and Real Estate as Giffen Goods in May 2014, and our own followup More Evidence That Debt Is A Giffen Good in January 2017.
While not considering the role of either money or debt as a Giffen good, Timothy Taylor wrote about recent, strong evidence of Giffen Goods in Real Life at Conversable Economist in January 2012. Since the reputation of Giffen goods is that they are elusive, it's fascinating to see them documented whenever they appear.
And speaking of sovereign debt, we would be remiss if we didn't include Visual Capitalist's United Nations of Debt infographic showing data from 2017:
Nearly every nations' debt is bigger now. What could possibly go wrong?
Labels: debt, economics, national debt
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.