Where Do We Go From Here???

Frank Howd
6 min readMar 4, 2021

Accompanying Jupyter Notebook

Heroku Web Application

I’d like to start this post by revealing to you that I have a passion for bottoms up investing. I look at companies one at a time, read annual reports, build out integrated financial statement models to determine long rate capital expenditures and earnings, examine returns on invested capital, understand the capital structure, discount projected future cash flows, and ultimately arrive at an estimation of value, or an expected internal rate-of-return for the going concern. I love this stuff. I consider Stephen Penman from Columbia University, Aswath Demodaran from NYU Stern, and Warren Buffett as true sources of inspiration for these endeavors.

So for this project, I was curious to look at things from another perspective — a top down, bird’s eye view of the stock market— macro versus micro. I wanted to examine supervised machine learning in action. My goal was to source and build out a simple dataset of economic indicators, work with the data, and build out some models to assess their predictive performance. The question I wanted to answer was, “Will the following month’s close for the S&P 500 be up or down?”

Baseline accuracy for the period observed was 62.93% — the frequency that the S&P 500 closed higher. Could we beat the baseline?

So deceptively simple is that previous sentence. As anyone who has already explored these types of models already knows, I definitely ran into trouble during my first dives into the world of index forecasting.

My first troubles lied in gathering good data. I needed data that would travel far enough back in the past to yield sufficient observations for creating a useful supervised machine learning model. Items like U.S. gross domestic product and corporate profits are indicated on a quarterly basis, while initial unemployment claims and long-term interest rates are tracked daily. Some of the indicators I sourced are only measured since the 1980s. I ended up gathering as many monthly data points as able for 10 features plus a target— and I thank the Federal Reserve of St. Louis for the bulk of this information. S&P 500 index levels were sourced from Yahoo Finance. Using monthly data (and forward fills for quarterly data), I was able to go back in time through 1985, which sounds like a lot but only yielded 427 observations. I ended up with a small dataset, but not necessarily an uncommon sizing for these types of projects either.

After adjusting the S&P 500 close back by a month, I had the computer do some basic math, and created a binary target column indicating whether the next month close for the S&P 500 was up or down. Then I started some exploratory data analysis with some plotting.

Many of the feature variables were highly correlated to the target.

Some quickly graphed scatter plots looked like they had high bias.

There were times when feature signal appeared directionless.

Most of the feature distributions were non-monotonic.

And many features were also highly correlated with each other, suggesting the presence of multicollinearity.

It was possible that the models would change erratically in response to small changes in the model or the data — spoiler alert, they definitely didn’t perform well.

After some feature exploring, adjusting, and engineering, four models were constructed — a Logistic Regression model, a Random Forest Classifier, a Ridge Classifier and a XGBoost Classifier. All models were either tuned using a RandomizedSearchCV, a GridSearchCV, or hand tuned using validation curves.

PDP isolate plots were created to see how the target was influenced by the features in isolation — the below plot shows how the market’s next month close is more likely to close down as industrial production decreases.

PDP interact plots, and 3D PDP interact plots, were also created to examine the effects of multiple features, in concert, on the target — the plot below shows that as corporate profits rise, so do the chances of the S&P 500 closing higher, with pressure added to this probability when long-term interest rates are also rising.

Finally, Shap plots were explored to gather additional information about how a model arrived at individual predictions.

At the end of it all, despite all of this exploration, data wrangling, and tuning, the model scores were not much better than just always guessing that the next month’s market close would be up. All of the models finished with an accuracy of around 68% on their test sets.

Scoring for Logistic Regression Model

But this doesn’t truly inform of how bad these models truly performed.

The only model that didn’t say the market would move directionally upwards in the month ahead for every single observation in the test set was the XGBoost XGBClassifier.

The rest yelled, “Stocks always go up.” Every. Single. Time.

Quite the recall, but you can’t miss the absolute lack of precision either.

And the ROC-AUC curves for the models? Here we can see again that models performed, collectively, no better than flipping a coin to generate a prediction.

So where are we now? Perhaps surprisingly, undiscouraged. It should be pretty obvious that supervised machine learning is a challenging method to apply for the generation of accurate stock market predictions, even when presented as a simple binary classification problem. I won’t be making trades with the models used for this project, but I will continue to explore and expand my learning, continue to discover good data sources, and I will continue to spend time learning how to generate appropriate predictive signals using feature creation, model selection, and model tuning. There is a need to learn how to more effectively address multicollinearity in my models, and a need to access data that travels back further in time, so that my datasets appropriately lengthen while they widen. Ultimately, it is as the saying goes though, “You’ve gotta start somewhere.” And from how these models performed, it also appears safe to say, “Things will only be getting better from here.” I am excited.

--

--

Frank Howd

Studying Data Science at Lambda School | UCONN Alumni