├── .DS_Store ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Data │ ├── Tickers.csv │ └── new_tickers.csv ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── static │ ├── css │ │ ├── bootstrap.min.css │ │ ├── style.css │ │ └── styles.css │ ├── image │ │ ├── bgVideo.mp4 │ │ ├── bgg.jpg │ │ ├── dollar_icon.png │ │ └── user.png │ └── js │ │ ├── TodayStock.js │ │ ├── bootstrap.min.js │ │ ├── jquery.slim.min.js │ │ ├── main.js │ │ ├── popper.min.js │ │ └── scripts.js ├── templates │ ├── API_Down.html │ ├── Invalid_Days_Format.html │ ├── Invalid_Ticker.html │ ├── Negative_Days.html │ ├── Overflow_days.html │ ├── index.html │ ├── result.html │ ├── search.html │ └── ticker.html ├── tests.py └── views.py ├── core ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── requirements.txt └── virtualenv ├── Scripts ├── Activate.ps1 ├── activate ├── activate.bat ├── autopep8.exe ├── black-primer.exe ├── black.exe ├── blackd.exe ├── deactivate.bat ├── django-admin.exe ├── django-admin.py ├── f2py.exe ├── fonttools.exe ├── gunicorn.exe ├── ipython.exe ├── ipython3.exe ├── jupyter-kernel.exe ├── jupyter-kernelspec.exe ├── jupyter-migrate.exe ├── jupyter-run.exe ├── jupyter-troubleshoot.exe ├── jupyter.exe ├── normalizer.exe ├── pip.exe ├── pip3.10.exe ├── pip3.9.exe ├── pip3.exe ├── pipenv-resolver.exe ├── pipenv.exe ├── pycodestyle.exe ├── pyftmerge.exe ├── pyftsubset.exe ├── pygmentize.exe ├── python.exe ├── pythonw.exe ├── pywin32_postinstall.py ├── pywin32_testall.py ├── qr.exe ├── sample.exe ├── sqlformat.exe ├── ttx.exe ├── virtualenv-clone.exe └── virtualenv.exe ├── bin ├── Activate.ps1 ├── activate ├── activate.csh ├── activate.fish ├── django-admin ├── easy_install ├── easy_install-3.9 ├── gunicorn ├── pip ├── pip3 ├── pip3.9 ├── python ├── python3 ├── python3.9 └── sqlformat ├── etc └── jupyter │ └── nbconfig │ └── notebook.d │ └── jupyterlab-plotly.json ├── pyvenv.cfg └── share ├── jupyter ├── kernels │ └── python3 │ │ ├── kernel.json │ │ ├── logo-32x32.png │ │ └── logo-64x64.png ├── labextensions │ └── jupyterlab-plotly │ │ ├── package.json │ │ └── static │ │ ├── 133.abf92d63193737cdd014.js │ │ ├── 423.13b35dff1663e01b2912.js │ │ ├── 478.f9a7116e09cbfb956212.js │ │ ├── 478.f9a7116e09cbfb956212.js.LICENSE.txt │ │ ├── 486.52aa9063b291ec574154.js │ │ ├── 486.52aa9063b291ec574154.js.LICENSE.txt │ │ ├── 657.b1d403059aa76281aea1.js │ │ ├── 879.799d701fea3e64d178cf.js │ │ ├── remoteEntry.66500334d7b36213676e.js │ │ └── style.js └── nbextensions │ └── jupyterlab-plotly │ ├── extension.js │ ├── index.js │ └── index.js.LICENSE.txt └── man └── man1 ├── ipython.1 ├── qr.1 └── ttx.1 /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.ipynb linguist-vendored -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/README.md -------------------------------------------------------------------------------- /app/Data/Tickers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/Data/Tickers.csv -------------------------------------------------------------------------------- /app/Data/new_tickers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/Data/new_tickers.csv -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/admin.py -------------------------------------------------------------------------------- /app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/apps.py -------------------------------------------------------------------------------- /app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/migrations/0001_initial.py -------------------------------------------------------------------------------- /app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/models.py -------------------------------------------------------------------------------- /app/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /app/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/static/css/style.css -------------------------------------------------------------------------------- /app/static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/static/css/styles.css -------------------------------------------------------------------------------- /app/static/image/bgVideo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/static/image/bgVideo.mp4 -------------------------------------------------------------------------------- /app/static/image/bgg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/static/image/bgg.jpg -------------------------------------------------------------------------------- /app/static/image/dollar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/static/image/dollar_icon.png -------------------------------------------------------------------------------- /app/static/image/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/static/image/user.png -------------------------------------------------------------------------------- /app/static/js/TodayStock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/static/js/TodayStock.js -------------------------------------------------------------------------------- /app/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /app/static/js/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/static/js/jquery.slim.min.js -------------------------------------------------------------------------------- /app/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/static/js/main.js -------------------------------------------------------------------------------- /app/static/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/static/js/popper.min.js -------------------------------------------------------------------------------- /app/static/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/static/js/scripts.js -------------------------------------------------------------------------------- /app/templates/API_Down.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/templates/API_Down.html -------------------------------------------------------------------------------- /app/templates/Invalid_Days_Format.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/templates/Invalid_Days_Format.html -------------------------------------------------------------------------------- /app/templates/Invalid_Ticker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/templates/Invalid_Ticker.html -------------------------------------------------------------------------------- /app/templates/Negative_Days.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/templates/Negative_Days.html -------------------------------------------------------------------------------- /app/templates/Overflow_days.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/templates/Overflow_days.html -------------------------------------------------------------------------------- /app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/templates/index.html -------------------------------------------------------------------------------- /app/templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/templates/result.html -------------------------------------------------------------------------------- /app/templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/templates/search.html -------------------------------------------------------------------------------- /app/templates/ticker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/templates/ticker.html -------------------------------------------------------------------------------- /app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/tests.py -------------------------------------------------------------------------------- /app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/app/views.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/core/asgi.py -------------------------------------------------------------------------------- /core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/core/settings.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/core/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/requirements.txt -------------------------------------------------------------------------------- /virtualenv/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /virtualenv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/activate -------------------------------------------------------------------------------- /virtualenv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/activate.bat -------------------------------------------------------------------------------- /virtualenv/Scripts/autopep8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/autopep8.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/black-primer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/black-primer.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/black.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/black.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/blackd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/blackd.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /virtualenv/Scripts/django-admin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/django-admin.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/django-admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/django-admin.py -------------------------------------------------------------------------------- /virtualenv/Scripts/f2py.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/f2py.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/fonttools.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/fonttools.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/gunicorn.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/gunicorn.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/ipython.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/ipython.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/ipython3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/ipython3.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/jupyter-kernel.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/jupyter-kernel.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/jupyter-kernelspec.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/jupyter-kernelspec.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/jupyter-migrate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/jupyter-migrate.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/jupyter-run.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/jupyter-run.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/jupyter-troubleshoot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/jupyter-troubleshoot.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/jupyter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/jupyter.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/normalizer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/normalizer.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/pip.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/pip3.10.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/pip3.10.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/pip3.9.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/pip3.9.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/pip3.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/pipenv-resolver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/pipenv-resolver.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/pipenv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/pipenv.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/pycodestyle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/pycodestyle.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/pyftmerge.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/pyftmerge.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/pyftsubset.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/pyftsubset.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/pygmentize.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/pygmentize.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/python.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/pywin32_postinstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/pywin32_postinstall.py -------------------------------------------------------------------------------- /virtualenv/Scripts/pywin32_testall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/pywin32_testall.py -------------------------------------------------------------------------------- /virtualenv/Scripts/qr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/qr.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/sample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/sample.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/sqlformat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/sqlformat.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/ttx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/ttx.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/virtualenv-clone.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/virtualenv-clone.exe -------------------------------------------------------------------------------- /virtualenv/Scripts/virtualenv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/Scripts/virtualenv.exe -------------------------------------------------------------------------------- /virtualenv/bin/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/bin/Activate.ps1 -------------------------------------------------------------------------------- /virtualenv/bin/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/bin/activate -------------------------------------------------------------------------------- /virtualenv/bin/activate.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/bin/activate.csh -------------------------------------------------------------------------------- /virtualenv/bin/activate.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/bin/activate.fish -------------------------------------------------------------------------------- /virtualenv/bin/django-admin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/bin/django-admin -------------------------------------------------------------------------------- /virtualenv/bin/easy_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/bin/easy_install -------------------------------------------------------------------------------- /virtualenv/bin/easy_install-3.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/bin/easy_install-3.9 -------------------------------------------------------------------------------- /virtualenv/bin/gunicorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/bin/gunicorn -------------------------------------------------------------------------------- /virtualenv/bin/pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/bin/pip -------------------------------------------------------------------------------- /virtualenv/bin/pip3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/bin/pip3 -------------------------------------------------------------------------------- /virtualenv/bin/pip3.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/bin/pip3.9 -------------------------------------------------------------------------------- /virtualenv/bin/python: -------------------------------------------------------------------------------- 1 | python3 -------------------------------------------------------------------------------- /virtualenv/bin/python3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/bin/python3 -------------------------------------------------------------------------------- /virtualenv/bin/python3.9: -------------------------------------------------------------------------------- 1 | python3 -------------------------------------------------------------------------------- /virtualenv/bin/sqlformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/bin/sqlformat -------------------------------------------------------------------------------- /virtualenv/etc/jupyter/nbconfig/notebook.d/jupyterlab-plotly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/etc/jupyter/nbconfig/notebook.d/jupyterlab-plotly.json -------------------------------------------------------------------------------- /virtualenv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/pyvenv.cfg -------------------------------------------------------------------------------- /virtualenv/share/jupyter/kernels/python3/kernel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/share/jupyter/kernels/python3/kernel.json -------------------------------------------------------------------------------- /virtualenv/share/jupyter/kernels/python3/logo-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/share/jupyter/kernels/python3/logo-32x32.png -------------------------------------------------------------------------------- /virtualenv/share/jupyter/kernels/python3/logo-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/share/jupyter/kernels/python3/logo-64x64.png -------------------------------------------------------------------------------- /virtualenv/share/jupyter/labextensions/jupyterlab-plotly/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/share/jupyter/labextensions/jupyterlab-plotly/package.json -------------------------------------------------------------------------------- /virtualenv/share/jupyter/labextensions/jupyterlab-plotly/static/133.abf92d63193737cdd014.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/share/jupyter/labextensions/jupyterlab-plotly/static/133.abf92d63193737cdd014.js -------------------------------------------------------------------------------- /virtualenv/share/jupyter/labextensions/jupyterlab-plotly/static/423.13b35dff1663e01b2912.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/share/jupyter/labextensions/jupyterlab-plotly/static/423.13b35dff1663e01b2912.js -------------------------------------------------------------------------------- /virtualenv/share/jupyter/labextensions/jupyterlab-plotly/static/478.f9a7116e09cbfb956212.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/share/jupyter/labextensions/jupyterlab-plotly/static/478.f9a7116e09cbfb956212.js -------------------------------------------------------------------------------- /virtualenv/share/jupyter/labextensions/jupyterlab-plotly/static/478.f9a7116e09cbfb956212.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/share/jupyter/labextensions/jupyterlab-plotly/static/478.f9a7116e09cbfb956212.js.LICENSE.txt -------------------------------------------------------------------------------- /virtualenv/share/jupyter/labextensions/jupyterlab-plotly/static/486.52aa9063b291ec574154.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/share/jupyter/labextensions/jupyterlab-plotly/static/486.52aa9063b291ec574154.js -------------------------------------------------------------------------------- /virtualenv/share/jupyter/labextensions/jupyterlab-plotly/static/486.52aa9063b291ec574154.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/share/jupyter/labextensions/jupyterlab-plotly/static/486.52aa9063b291ec574154.js.LICENSE.txt -------------------------------------------------------------------------------- /virtualenv/share/jupyter/labextensions/jupyterlab-plotly/static/657.b1d403059aa76281aea1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/share/jupyter/labextensions/jupyterlab-plotly/static/657.b1d403059aa76281aea1.js -------------------------------------------------------------------------------- /virtualenv/share/jupyter/labextensions/jupyterlab-plotly/static/879.799d701fea3e64d178cf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/share/jupyter/labextensions/jupyterlab-plotly/static/879.799d701fea3e64d178cf.js -------------------------------------------------------------------------------- /virtualenv/share/jupyter/labextensions/jupyterlab-plotly/static/remoteEntry.66500334d7b36213676e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/share/jupyter/labextensions/jupyterlab-plotly/static/remoteEntry.66500334d7b36213676e.js -------------------------------------------------------------------------------- /virtualenv/share/jupyter/labextensions/jupyterlab-plotly/static/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/share/jupyter/labextensions/jupyterlab-plotly/static/style.js -------------------------------------------------------------------------------- /virtualenv/share/jupyter/nbextensions/jupyterlab-plotly/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/share/jupyter/nbextensions/jupyterlab-plotly/extension.js -------------------------------------------------------------------------------- /virtualenv/share/jupyter/nbextensions/jupyterlab-plotly/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/share/jupyter/nbextensions/jupyterlab-plotly/index.js -------------------------------------------------------------------------------- /virtualenv/share/jupyter/nbextensions/jupyterlab-plotly/index.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/share/jupyter/nbextensions/jupyterlab-plotly/index.js.LICENSE.txt -------------------------------------------------------------------------------- /virtualenv/share/man/man1/ipython.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/share/man/man1/ipython.1 -------------------------------------------------------------------------------- /virtualenv/share/man/man1/qr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/share/man/man1/qr.1 -------------------------------------------------------------------------------- /virtualenv/share/man/man1/ttx.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishal815/-Stock-market-Prediction-with-Machine-Learning-Django/HEAD/virtualenv/share/man/man1/ttx.1 --------------------------------------------------------------------------------