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
If you were John Taylor, how would you set the base interest rate for U.S. banks?
John Taylor is, of course, the guy who invented the Taylor Rule - a guide the U.S. Federal Reserve could follow in setting the level of the Federal Funds Rate. And recently, he got a bit annoyed with some other guys who had different ideas for what level the Fed should set that base interest rate for U.S. banks, who invoked his rule to justify their preferences.
- Over at Market Beat: WSJ.com's inside look at the markets, Mark Gongloff reports that Standard Chartered's David Semmens says that "Based on a strict Taylor-rule calculation, the first effective fed-funds rate increase shouldn't come until the first quarter of 2013."
- And over at Business Insider, Art Cashin of UBS reports that Jim Brown of Premium Investor says that "the Taylor rule says the Fed funds rate should be -1.65%" suggesting the need for a QE 2.5.
- But no calculations are provided in either report.
- Over here at Economics One, I can report that the Taylor Rule says that the fed funds rate should now be 1 percent, and I can provide the calculations. Available data (through the 1st quarter) show that the inflation rate is about 1.6 percent (GDP deflator smoothed over four quarters) and the GDP gap is about 4.8 percent (average of San Francisco Fed survey). This implies an interest rate of 1.5 X1.6 + .5X(-4.8) + 1 = 2.4 - 2.4 +1 = 1.0 percent. I am not sure why other reports differ, but at least the coefficients and numbers are here to see and check. Perhaps they are using different coefficients, but David Papell writing at Econbrowser earlier this month showed why the coefficients reported here work well.
- So I think the economy would be better off if the Fed started moving to a higher funds rate now rather than later, and I certainly see no rationale for another round of quantitative easing. Unfortunately, it looks like the Fed will continue with its zero interest rate for a while longer, and traders will continue to debate whether or not there will be a QE3 adding volatility to the market.
So to clear up any confusion in the econoblogosphere about how John Taylor would set U.S. interest rates, our newest tool will help you do Taylor's math just as he would, so he won't have to call you out on his blog any more!
Just enter the indicated data in the tool below, and we'll tell you what John Taylor would do if John Taylor used his rule to set U.S. interest rates:
Using the default data from John Taylor's blog post, we find that if John Taylor's Rule were applied to the U.S. Federal Funds Rate today, it would go up from nearly 0% to 1.0%.
And that's what John Taylor's Taylor Rule would do.
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.