├── .github └── workflows │ └── main.yml ├── .gitignore ├── Dockerfile ├── Makefile ├── README.md ├── application.py ├── prediction.py └── requirements.txt /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranavM98/Prediction-of-Stock-Prices---Dash-App/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranavM98/Prediction-of-Stock-Prices---Dash-App/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranavM98/Prediction-of-Stock-Prices---Dash-App/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranavM98/Prediction-of-Stock-Prices---Dash-App/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranavM98/Prediction-of-Stock-Prices---Dash-App/HEAD/README.md -------------------------------------------------------------------------------- /application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranavM98/Prediction-of-Stock-Prices---Dash-App/HEAD/application.py -------------------------------------------------------------------------------- /prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranavM98/Prediction-of-Stock-Prices---Dash-App/HEAD/prediction.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PranavM98/Prediction-of-Stock-Prices---Dash-App/HEAD/requirements.txt --------------------------------------------------------------------------------