This program is still under creation.
- The OS of creation of Stocker project is Windows 11.
- The Programming Language and Version for data manipulation, management and ML is Python 3.9
- The API yahoo_fin is being used to retrieve the stock data.
conda create -n stocker python=3.12 pip
pip install requirements.txtIf there are more packages installed, update the environment.yml file with:
conda env export --from-history > environment.ymlTo export the packages to a requirements.txt file:
pipreqs . --forceIf you want to build the environment from scratch, run the following:
conda create -n stocker python=3.12 pip
pip install SQLAlchemy
pip install rich
pip install psycopg2-binary
pip install -U "ray[default]"
pip install gpustat
pip install tqdm
pip install yfinance
pip install yahooquery
pip install "modin[all]"
pip install yahoo_fin- Master
- Develop