Can We Improve Upon Growth-Trend Timing?

Will Kinlaw, Mark Kritzman and David Turkington recently published an interesting paper titled, "A New Index of the Business Cycle" in which they applied the Mahalanobis Distance to an ensemble of leading economic indicators to calculate the probability of a recession. After a decent amount of putzing around with the data, I was able to …

Continue reading Can We Improve Upon Growth-Trend Timing?

Python OLS Regression

Overview: Linear regression is one of the most commonly used tools in finance for analyzing the relationship between two or more variables. In this post, we’ll derive the formulas for estimating the unknown parameters in a linear regression using Ordinary Least Squares(OLS). We will then use those formulas to build some functions in Python. Simple Regression Suppose we are …

Continue reading Python OLS Regression