├── .gitattributes ├── .github └── workflows │ └── codeql-analysis.yml ├── LICENSE ├── README.md └── src ├── db.sqlite3 ├── manage.py ├── pred_app ├── admin.py ├── apps.py ├── lstm_prediction.py ├── models.py ├── static │ └── pred_app │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── images │ │ │ └── fbg_line.gif │ │ ├── menusearch.css │ │ └── style.css │ │ ├── data │ │ ├── stock.json │ │ └── stock2.json │ │ ├── fonts │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ └── font-awesome.css │ │ │ └── fonts │ │ │ │ ├── fontawesome-webfont-.eot │ │ │ │ ├── fontawesome-webfont-v=4.3.0.eot │ │ │ │ ├── fontawesome-webfont-v=4.3.0.svg │ │ │ │ ├── fontawesome-webfont-v=4.3.0.ttf │ │ │ │ ├── fontawesome-webfont-v=4.3.0.woff │ │ │ │ └── fontawesome-webfont-v=4.3.0.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── img │ │ ├── back.jpg │ │ ├── header.jpeg │ │ ├── header.jpg │ │ ├── header_b.jpg │ │ ├── header_images.jpg │ │ ├── image1.jpg │ │ ├── image2.jpg │ │ ├── image3.jpg │ │ ├── image4.jpg │ │ ├── image5.jpg │ │ ├── image6.jpg │ │ ├── image7.jpg │ │ ├── search.gif │ │ ├── submit.gif │ │ └── submit.png │ │ └── js │ │ ├── arial.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── cuf_run.js │ │ ├── cufon-yui.js │ │ ├── handlebars.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.3.2.min.js │ │ ├── jquery.1.11.1.js │ │ ├── modernizr.custom.js │ │ ├── npm.js │ │ ├── script.js │ │ ├── search.js │ │ ├── typeahead.js │ │ └── typeahead_t.js ├── templates │ └── pred_app │ │ ├── base.html │ │ ├── contact.html │ │ ├── index.html │ │ ├── prediction.html │ │ └── search.html ├── tests.py ├── urls.py └── views.py └── predstocks ├── settings.py ├── urls.py └── wsgi.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/README.md -------------------------------------------------------------------------------- /src/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/db.sqlite3 -------------------------------------------------------------------------------- /src/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/manage.py -------------------------------------------------------------------------------- /src/pred_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /src/pred_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/apps.py -------------------------------------------------------------------------------- /src/pred_app/lstm_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/lstm_prediction.py -------------------------------------------------------------------------------- /src/pred_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/models.py -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/css/bootstrap-theme.css -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/css/bootstrap.css -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/css/images/fbg_line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/css/images/fbg_line.gif -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/css/menusearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/css/menusearch.css -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/css/style.css -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/data/stock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/data/stock.json -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/data/stock2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/data/stock2.json -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/fonts/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/fonts/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/fonts/font-awesome/fonts/fontawesome-webfont-.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/fonts/font-awesome/fonts/fontawesome-webfont-.eot -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/fonts/font-awesome/fonts/fontawesome-webfont-v=4.3.0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/fonts/font-awesome/fonts/fontawesome-webfont-v=4.3.0.eot -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/fonts/font-awesome/fonts/fontawesome-webfont-v=4.3.0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/fonts/font-awesome/fonts/fontawesome-webfont-v=4.3.0.svg -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/fonts/font-awesome/fonts/fontawesome-webfont-v=4.3.0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/fonts/font-awesome/fonts/fontawesome-webfont-v=4.3.0.ttf -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/fonts/font-awesome/fonts/fontawesome-webfont-v=4.3.0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/fonts/font-awesome/fonts/fontawesome-webfont-v=4.3.0.woff -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/fonts/font-awesome/fonts/fontawesome-webfont-v=4.3.0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/fonts/font-awesome/fonts/fontawesome-webfont-v=4.3.0.woff2 -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/img/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/img/back.jpg -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/img/header.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/img/header.jpeg -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/img/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/img/header.jpg -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/img/header_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/img/header_b.jpg -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/img/header_images.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/img/header_images.jpg -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/img/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/img/image1.jpg -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/img/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/img/image2.jpg -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/img/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/img/image3.jpg -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/img/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/img/image4.jpg -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/img/image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/img/image5.jpg -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/img/image6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/img/image6.jpg -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/img/image7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/img/image7.jpg -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/img/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/img/search.gif -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/img/submit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/img/submit.gif -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/img/submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/img/submit.png -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/js/arial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/js/arial.js -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/js/bootstrap.js -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/js/cuf_run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/js/cuf_run.js -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/js/cufon-yui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/js/cufon-yui.js -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/js/handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/js/handlebars.js -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/js/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/js/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/js/jquery-1.3.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/js/jquery-1.3.2.min.js -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/js/jquery.1.11.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/js/jquery.1.11.1.js -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/js/modernizr.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/js/modernizr.custom.js -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/js/npm.js -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/js/script.js -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/js/search.js -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/js/typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/js/typeahead.js -------------------------------------------------------------------------------- /src/pred_app/static/pred_app/js/typeahead_t.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/static/pred_app/js/typeahead_t.js -------------------------------------------------------------------------------- /src/pred_app/templates/pred_app/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/templates/pred_app/base.html -------------------------------------------------------------------------------- /src/pred_app/templates/pred_app/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/templates/pred_app/contact.html -------------------------------------------------------------------------------- /src/pred_app/templates/pred_app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/templates/pred_app/index.html -------------------------------------------------------------------------------- /src/pred_app/templates/pred_app/prediction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/templates/pred_app/prediction.html -------------------------------------------------------------------------------- /src/pred_app/templates/pred_app/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/templates/pred_app/search.html -------------------------------------------------------------------------------- /src/pred_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/tests.py -------------------------------------------------------------------------------- /src/pred_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/urls.py -------------------------------------------------------------------------------- /src/pred_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/pred_app/views.py -------------------------------------------------------------------------------- /src/predstocks/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/predstocks/settings.py -------------------------------------------------------------------------------- /src/predstocks/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/predstocks/urls.py -------------------------------------------------------------------------------- /src/predstocks/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-agawane/stock-price-forecaster-lstm/HEAD/src/predstocks/wsgi.py --------------------------------------------------------------------------------