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 risk of a national recession beginning in the United States anytime in the next twelve months, or specifically between 13 April 2018 and 13 April 2019, has ticked up toward 0.6% from our previous reading of just above 0.5% a month ago.
As expected, that uptick is primarily the result of the Federal Reserve's most recent quarter-point rate hike, which was announced on 21 March 2018, where the target range for the Federal Funds Rate now stands between 1.50% and 1.75%. At the same time, the U.S. Treasury yield curve has largely remained steady since our last update, where the spread, or difference, between the yields of the constant maturity 10-Year Treasury and the 3-Month Treasury is within 1/100th of a percentage point of what it was a month ago.
The story is a bit different as you move up the Treasury yield curve, where the spread between the 10-Year and the 2-Year Treasuries has narrowed to reach its smallest difference in nearly a decade, which is raising red flags in some quarters on Wall Street. By contrast, our recession probability analysis is based on Jonathan Wright's 2006 paper describing a recession forecasting method using 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, which should be less susceptible to false alarms.
Looking forward, if you use the latest data for the treasury yields and the Federal Funds Rate in our recession odds reckoning tool, you'll find that your results will differ from the data we've presented in the chart above. That is because the chart follows Wright's methodology in using the one-quarter average for the yields and rates data used in its calculations, where the tool's results based on the most recently available data can be taken as an indication of the direction that the recession probability track is most likely heading when compared with the information provided by our recession probability track chart.
Doing that exercise today indicates that the recession risk remains very low, but is likely to continue ticking slightly upward, particular since the U.S. Federal Reserve appears set to continue hiking short term interest rates in the U.S. The following data summarizes the probabilities for when and by how much investors expect the Fed will raise its Federal Funds Rate.
Probabilities for Target Federal Funds Rate at Selected Upcoming Fed Meeting Dates (CME FedWatch on 13 April 2018) | ||||||
---|---|---|---|---|---|---|
FOMC Meeting Date | Current | |||||
150-175 bps | 175-200 bps | 200-225 bps | 225-250 bps | 250-275 bps | 275-300 bps | |
13-Jun-2018 (2018-Q2) | 0.0% | 99.5% | 0.5% | 0.0% | 0.0% | 0.0% |
26-Sep-2018 (2018-Q3) | 0.0% | 29.6% | 66.0% | 4.4% | 0.0% | 0.0% |
19-Dec-2018 (2018-Q4) | 0.0% | 15.8% | 47.9% | 31.8% | 4.4% | 0.0% |
At present, we see that investors currently expect the Fed to hike the Federal Funds Rate by a quarter-point twice more in 2018, once at its June 2018 meeting and again after its September 2018 meeting. At present, investors do not expect a fourth rate hike in 2018.
Labels: 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.