What if you could use deep learning to predict stock prices and beat the market? That’s exactly what we set out to explore in this project. Our goal was to implement a deep learning algorithm that could outperform the S&P 500 index. Spoiler alert: we did—at least in a simulated environment.
To make this project manageable, we focused on the top 150 stocks in the S&P 500 by dollar volume. This narrowed focus significantly reduced training time while still providing a robust dataset. We sourced the data using the yfinance API, which sources data from Yahoo Finance. The dataset spanned from January 1, 2000, to February 19, 2024.
The trading strategy involved the following steps:
For stock price predictions, we used a Long Short-Term Memory (LSTM) model, a type of recurrent neural network well-suited for sequential data like stock prices. Our LSTM architecture consisted of four layers, each with a dropout factor to prevent overfitting.
Once predictions were generated, we constructed a portfolio by selecting the top 15 stocks with the highest predicted returns. The weights were then optimized to maximize the Sharpe ratio, which measures risk-adjusted returns.
However, it’s important to note that backtesting doesn’t guarantee real-world success. Backtests often omit trading costs and other practical challenges. While the results are promising, implementing this strategy with real money would be an entirely different challenge. Proceed with caution!
The full code is available on my GitHub.
For more information or inquiries about this project, please contact me at
westling01@gmail.com.