this is my first thing I made with my buddy Jakob, and Andrew for Battle of the Quants
Clone the repository
git clone https://github.com/andrewhall1124/mean_reversion.gitCreate virtual environment
python3 -m venv .venv # MacOS/Linux
python -m venv .venv # WindowsActivate virtual environment
source .venv/bin/activate # MacOS/Linux
.venv/Scripts/activate # WindowsUpgrade pip
python -m pip install --upgrade pipInstall requirements
pip install -r requirements.txt