├── LICENSE ├── Procfile ├── README.md ├── SP500_list.csv ├── app.py ├── demo └── sample.gif ├── imageforapp2.jpg ├── requirements.txt ├── runtime.txt └── setup.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-catalano/StockAnalysisApp/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: sh setup.sh && streamlit run app.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-catalano/StockAnalysisApp/HEAD/README.md -------------------------------------------------------------------------------- /SP500_list.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-catalano/StockAnalysisApp/HEAD/SP500_list.csv -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-catalano/StockAnalysisApp/HEAD/app.py -------------------------------------------------------------------------------- /demo/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-catalano/StockAnalysisApp/HEAD/demo/sample.gif -------------------------------------------------------------------------------- /imageforapp2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-catalano/StockAnalysisApp/HEAD/imageforapp2.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-catalano/StockAnalysisApp/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.7.3 -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-catalano/StockAnalysisApp/HEAD/setup.sh --------------------------------------------------------------------------------