Recession forecasting II: Assessing Hussman’s Accuracy

[This article was first published on Modern Tool Making, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

In my last post on recessions, I implemented John Hussman’s Recession Warning Composite in R. In this post I will examine how well this index performs and discuss how we might improve it. If you would like to follow along at home, be sure to run the code from the last post, before running anything from this post.

First of all, lets evaluate how predictive Hussman’s index is of recessions next month:

This code simply compares the current value of USREC (US Recessions) to last month’s value of the recession warning composite. By this measure, the recession warning composite is only 81.55% accurate, with a 95% confidence interval of [75%,87%].

Next, let’s evaluate a warning ANYTIME in the last 6 months to the current value of USREC.

By this measure, the forecast is even worse: the accuracy is 73.62% [66%,80%]. Interestingly, this measure has a very high ‘Negative Predictive Value’ (.9896), which indicates if the recession warning composite has been 0 for the past 6 months, you can be reasonable sure there will be no recession this month.

Finally, let’s make a naive recession forecast, and predict that the current value of USREC will be equal to it’s previous value:

This forecast is 97.62% accurate! [94%,99%]. Therefore, I have to conclude that Hussman’s recession warning composite, while interesting to implement, is not particularly useful for forecasting recessions. However, it may be that Hussman is primarily concerned with forecasting when recessions START and END. Given that the current state of US recessions is highly predictive of the next state of US recessions, this might be a valid approach. Still, I’m struggling to find a useful way of interpreting Hussman’s index.

If you have any ideas for using or improving Hussman’s index, please leave a comment.


To leave a comment for the author, please follow the link and comment on their blog: Modern Tool Making.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)