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
Since our previous update nearly six weeks ago, the U.S. Treasury yield curve has crashed and the Federal Reserve has implement not just one, but two emergency rate cuts, the latest slashing the Federal Funds Rate to a target range between 0% and 0.25% on Sunday, 15 March 2020.
The two emergency rate cuts have come in the last two weeks, as the impact of the COVID-19 coronavirus pandemic has begun to affect the U.S. economy and its prospects.
We're making a note of that recent timing because the recession probability track is based on 90-day rolling averages for both the spread between 10-Year and 3-Month constant maturity U.S. Treasuries and the Federal Funds Rate, which might as well have the turning radius of a large container ship. Never the less, it is showing signs of reversing its recent trend of improvement, where it now indicates a 4% chance, or a 1-in-26 probability, the National Bureau of Economic Research will someday find a national recession began in the United States between March 2020 and March 2021.
Those odds had previously peaked at 1 in 9 back on 9 September 2019, where if the NBER eventually ever does determine that the national U.S. economy entered into recession in either 2019 or 2020, they will most likely identify a month between September 2019 and September 2020 as its starting point. Based on the evolving situation with the fallout from the coronavirus pandemic, we would anticipate that narrowing to be somewhere between December 2019 and September 2020.
These probabilities come from a recession forecasting method developed back in 2006 by Jonathan Wright, which uses the level of the effective Federal Funds Rate and the spread between the yields of the 10-Year and 3-Month Constant Maturity U.S. Treasuries to estimate the probability of recession based on historical data.
Given current events, we'll likely return to presenting updates in this series roughly every three weeks, roughly coinciding with every other regularly scheduled Federal Open Market Committee meeting at the Federal Reserve. But you don't have to wait for us if you want to get an update on the latest recession odds sooner! Our recession odds reckoning tool is both free and really easy to use. Plug in the most recent data available, or the data that would apply for a future scenario that you would like to consider, and compare the result you get in our tool with what we've shown in the most recent chart we've presented above to get a sense of how the recession odds are changing.
Meanwhile, if you know anyone from the Fed who might be looking for ideas of what else they might do to forestall worse economic problems, send them here and tell them to scroll to the first update....
We've been tracking the ebb and flow of heightened recession odds since June 2017 - here are all the posts in our latest recession forecasting series!
Labels: coronavirus, recession forecast
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.