├── .gitignore ├── Resources ├── LSTM Stock Prediction-Copy1.ipynb ├── LearnMatplotlib.ipynb ├── LearnNumpy.ipynb ├── LearnPandas.ipynb ├── TSLA.csv ├── auto_sales_data.csv ├── call_activity.csv ├── example_prediction.png ├── keras_model.keras ├── new_array.npy ├── output.csv ├── stock_prediction_model.keras ├── stock_prediction_using_LSTM.ipynb └── test.ipynb ├── backend-drf ├── accounts │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ └── views.py ├── api │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── manage.py ├── stock_prediction_main │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── stock_prediction_model.keras └── frontend-react ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── src ├── App.css ├── App.jsx ├── AuthProvider.jsx ├── PrivateRoute.jsx ├── PublicRoute.jsx ├── assets │ └── css │ │ └── style.css ├── axiosInstance.js ├── components │ ├── Button.jsx │ ├── Footer.jsx │ ├── Header.jsx │ ├── Login.jsx │ ├── Main.jsx │ ├── Register.jsx │ └── dashboard │ │ └── Dashboard.jsx └── main.jsx └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/.gitignore -------------------------------------------------------------------------------- /Resources/LSTM Stock Prediction-Copy1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/Resources/LSTM Stock Prediction-Copy1.ipynb -------------------------------------------------------------------------------- /Resources/LearnMatplotlib.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/Resources/LearnMatplotlib.ipynb -------------------------------------------------------------------------------- /Resources/LearnNumpy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/Resources/LearnNumpy.ipynb -------------------------------------------------------------------------------- /Resources/LearnPandas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/Resources/LearnPandas.ipynb -------------------------------------------------------------------------------- /Resources/TSLA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/Resources/TSLA.csv -------------------------------------------------------------------------------- /Resources/auto_sales_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/Resources/auto_sales_data.csv -------------------------------------------------------------------------------- /Resources/call_activity.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/Resources/call_activity.csv -------------------------------------------------------------------------------- /Resources/example_prediction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/Resources/example_prediction.png -------------------------------------------------------------------------------- /Resources/keras_model.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/Resources/keras_model.keras -------------------------------------------------------------------------------- /Resources/new_array.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/Resources/new_array.npy -------------------------------------------------------------------------------- /Resources/output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/Resources/output.csv -------------------------------------------------------------------------------- /Resources/stock_prediction_model.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/Resources/stock_prediction_model.keras -------------------------------------------------------------------------------- /Resources/stock_prediction_using_LSTM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/Resources/stock_prediction_using_LSTM.ipynb -------------------------------------------------------------------------------- /Resources/test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/Resources/test.ipynb -------------------------------------------------------------------------------- /backend-drf/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend-drf/accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/backend-drf/accounts/admin.py -------------------------------------------------------------------------------- /backend-drf/accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/backend-drf/accounts/apps.py -------------------------------------------------------------------------------- /backend-drf/accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend-drf/accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/backend-drf/accounts/models.py -------------------------------------------------------------------------------- /backend-drf/accounts/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/backend-drf/accounts/serializers.py -------------------------------------------------------------------------------- /backend-drf/accounts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/backend-drf/accounts/tests.py -------------------------------------------------------------------------------- /backend-drf/accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/backend-drf/accounts/views.py -------------------------------------------------------------------------------- /backend-drf/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend-drf/api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/backend-drf/api/admin.py -------------------------------------------------------------------------------- /backend-drf/api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/backend-drf/api/apps.py -------------------------------------------------------------------------------- /backend-drf/api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend-drf/api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/backend-drf/api/models.py -------------------------------------------------------------------------------- /backend-drf/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/backend-drf/api/serializers.py -------------------------------------------------------------------------------- /backend-drf/api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/backend-drf/api/tests.py -------------------------------------------------------------------------------- /backend-drf/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/backend-drf/api/urls.py -------------------------------------------------------------------------------- /backend-drf/api/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/backend-drf/api/utils.py -------------------------------------------------------------------------------- /backend-drf/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/backend-drf/api/views.py -------------------------------------------------------------------------------- /backend-drf/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/backend-drf/manage.py -------------------------------------------------------------------------------- /backend-drf/stock_prediction_main/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend-drf/stock_prediction_main/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/backend-drf/stock_prediction_main/asgi.py -------------------------------------------------------------------------------- /backend-drf/stock_prediction_main/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/backend-drf/stock_prediction_main/settings.py -------------------------------------------------------------------------------- /backend-drf/stock_prediction_main/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/backend-drf/stock_prediction_main/urls.py -------------------------------------------------------------------------------- /backend-drf/stock_prediction_main/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/backend-drf/stock_prediction_main/wsgi.py -------------------------------------------------------------------------------- /backend-drf/stock_prediction_model.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/backend-drf/stock_prediction_model.keras -------------------------------------------------------------------------------- /frontend-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/frontend-react/README.md -------------------------------------------------------------------------------- /frontend-react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/frontend-react/index.html -------------------------------------------------------------------------------- /frontend-react/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/frontend-react/package-lock.json -------------------------------------------------------------------------------- /frontend-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/frontend-react/package.json -------------------------------------------------------------------------------- /frontend-react/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend-react/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/frontend-react/src/App.jsx -------------------------------------------------------------------------------- /frontend-react/src/AuthProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/frontend-react/src/AuthProvider.jsx -------------------------------------------------------------------------------- /frontend-react/src/PrivateRoute.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/frontend-react/src/PrivateRoute.jsx -------------------------------------------------------------------------------- /frontend-react/src/PublicRoute.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/frontend-react/src/PublicRoute.jsx -------------------------------------------------------------------------------- /frontend-react/src/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/frontend-react/src/assets/css/style.css -------------------------------------------------------------------------------- /frontend-react/src/axiosInstance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/frontend-react/src/axiosInstance.js -------------------------------------------------------------------------------- /frontend-react/src/components/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/frontend-react/src/components/Button.jsx -------------------------------------------------------------------------------- /frontend-react/src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/frontend-react/src/components/Footer.jsx -------------------------------------------------------------------------------- /frontend-react/src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/frontend-react/src/components/Header.jsx -------------------------------------------------------------------------------- /frontend-react/src/components/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/frontend-react/src/components/Login.jsx -------------------------------------------------------------------------------- /frontend-react/src/components/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/frontend-react/src/components/Main.jsx -------------------------------------------------------------------------------- /frontend-react/src/components/Register.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/frontend-react/src/components/Register.jsx -------------------------------------------------------------------------------- /frontend-react/src/components/dashboard/Dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/frontend-react/src/components/dashboard/Dashboard.jsx -------------------------------------------------------------------------------- /frontend-react/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/frontend-react/src/main.jsx -------------------------------------------------------------------------------- /frontend-react/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/stock-prediction-portal/HEAD/frontend-react/vite.config.js --------------------------------------------------------------------------------