Stock price prediction app provides future price predictions for the S&P 100 Index stocks for next 90 days by using artificial intelligence models.
It also provides comprehensive analysis about the statistics of a spesific stock in a desired time interval.
- Prod: https://stock-price-prediction-app.streamlit.app
- Dev: https://dev-stock-price-prediction-app.streamlit.app
git clone https://github.com/ozguraslank/stock-prediction-app.git
docker build -t <IMAGE_NAME> .
docker run -p 8501:8501 <IMAGE_NAME>
python3 -m venv <ENV_NAME>
.\<ENV_NAME>\Scripts\activate
source <ENV_NAME>/bin/activate
pip3 install -r requirements.txt
cd src
streamlit run app.py
After these steps, your web app will be deployed on web, both in localhost and network.
URL for both localhost and network will be shown in the console after executing the command given in step 5.