├── README.md ├── __pycache__ ├── flaskHome.cpython-36.pyc └── test ├── flaskHome.py ├── static ├── css │ ├── bootstrap-grid.css │ ├── bootstrap-grid.css.map │ ├── bootstrap-grid.min.css │ ├── bootstrap-grid.min.css.map │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.css.map │ ├── bootstrap-reboot.min.css │ ├── bootstrap-reboot.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ └── main.css ├── images │ ├── acornsGraphic1.jpg │ ├── acornsGraphic2.jpg │ ├── acornsGraphic3.jpg │ ├── acornsGraphic4.jpg │ ├── acornsGraphic5.jpg │ ├── qcmain.jpg │ ├── qtw.jpg │ ├── quantexlogo.jpg │ ├── robinhoodGraphic1.jpg │ ├── robinhoodGraphic2.jpg │ ├── robinhoodGraphic3.jpg │ ├── robinhoodGraphic4.jpg │ ├── robinhoodGraphic5.jpg │ ├── sl1.jpg │ ├── sl2.jpg │ ├── sl3.jpg │ ├── sl4.jpg │ ├── stashGraphic1.jpg │ ├── stashGraphic2.jpg │ ├── stashGraphic3.jpg │ ├── stashGraphic4.jpg │ └── stashGraphic5.jpg ├── js │ ├── bootstrap.bundle.js │ ├── bootstrap.bundle.js.map │ ├── bootstrap.bundle.min.js │ ├── bootstrap.bundle.min.js.map │ ├── bootstrap.js │ ├── bootstrap.js.map │ ├── bootstrap.min.js │ ├── bootstrap.min.js.map │ ├── jquery.js │ ├── main.js │ └── script.js └── stkRatings.csv └── templates ├── about.html ├── bestInvestingApps.html ├── home.html ├── howToPickGreatStocks.html ├── layout.html ├── portfolioBuilder.html ├── portfolioConstruction.html ├── research.html └── rm.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/flaskHome.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/__pycache__/flaskHome.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/test: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /flaskHome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/flaskHome.py -------------------------------------------------------------------------------- /static/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/css/bootstrap-grid.css -------------------------------------------------------------------------------- /static/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /static/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /static/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /static/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /static/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /static/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /static/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/images/acornsGraphic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/images/acornsGraphic1.jpg -------------------------------------------------------------------------------- /static/images/acornsGraphic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/images/acornsGraphic2.jpg -------------------------------------------------------------------------------- /static/images/acornsGraphic3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/images/acornsGraphic3.jpg -------------------------------------------------------------------------------- /static/images/acornsGraphic4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/images/acornsGraphic4.jpg -------------------------------------------------------------------------------- /static/images/acornsGraphic5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/images/acornsGraphic5.jpg -------------------------------------------------------------------------------- /static/images/qcmain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/images/qcmain.jpg -------------------------------------------------------------------------------- /static/images/qtw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/images/qtw.jpg -------------------------------------------------------------------------------- /static/images/quantexlogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/images/quantexlogo.jpg -------------------------------------------------------------------------------- /static/images/robinhoodGraphic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/images/robinhoodGraphic1.jpg -------------------------------------------------------------------------------- /static/images/robinhoodGraphic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/images/robinhoodGraphic2.jpg -------------------------------------------------------------------------------- /static/images/robinhoodGraphic3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/images/robinhoodGraphic3.jpg -------------------------------------------------------------------------------- /static/images/robinhoodGraphic4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/images/robinhoodGraphic4.jpg -------------------------------------------------------------------------------- /static/images/robinhoodGraphic5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/images/robinhoodGraphic5.jpg -------------------------------------------------------------------------------- /static/images/sl1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/images/sl1.jpg -------------------------------------------------------------------------------- /static/images/sl2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/images/sl2.jpg -------------------------------------------------------------------------------- /static/images/sl3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/images/sl3.jpg -------------------------------------------------------------------------------- /static/images/sl4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/images/sl4.jpg -------------------------------------------------------------------------------- /static/images/stashGraphic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/images/stashGraphic1.jpg -------------------------------------------------------------------------------- /static/images/stashGraphic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/images/stashGraphic2.jpg -------------------------------------------------------------------------------- /static/images/stashGraphic3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/images/stashGraphic3.jpg -------------------------------------------------------------------------------- /static/images/stashGraphic4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/images/stashGraphic4.jpg -------------------------------------------------------------------------------- /static/images/stashGraphic5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/images/stashGraphic5.jpg -------------------------------------------------------------------------------- /static/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /static/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /static/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /static/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/js/bootstrap.js -------------------------------------------------------------------------------- /static/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/js/bootstrap.js.map -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/js/jquery.js -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/js/main.js -------------------------------------------------------------------------------- /static/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/js/script.js -------------------------------------------------------------------------------- /static/stkRatings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/static/stkRatings.csv -------------------------------------------------------------------------------- /templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/templates/about.html -------------------------------------------------------------------------------- /templates/bestInvestingApps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/templates/bestInvestingApps.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/howToPickGreatStocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/templates/howToPickGreatStocks.html -------------------------------------------------------------------------------- /templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/templates/layout.html -------------------------------------------------------------------------------- /templates/portfolioBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/templates/portfolioBuilder.html -------------------------------------------------------------------------------- /templates/portfolioConstruction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/templates/portfolioConstruction.html -------------------------------------------------------------------------------- /templates/research.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/templates/research.html -------------------------------------------------------------------------------- /templates/rm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizancodes/Investment-Insights-Web-App/HEAD/templates/rm.html --------------------------------------------------------------------------------