diff --git a/PROJECT_STRUCTURE.md b/PROJECT_STRUCTURE.md index db53de1..1ed8936 100644 --- a/PROJECT_STRUCTURE.md +++ b/PROJECT_STRUCTURE.md @@ -5,7 +5,11 @@ ├── ARIMA/ │ ├── ARIMA_V2.ipynb │ ├── README.md -│ └── hybrid.ipynb +│ ├── hybrid.ipynb +│ └── saved_model/ +│ ├── arima_model.pkl +│ ├── lstm_model.h5 +│ └── scaler.pkl ├── Contributing.md ├── Data/ │ ├── SBI Test data.csv @@ -30,6 +34,7 @@ │ ├── reduced_redundancy_stock_price_prediction.ipynb │ └── requirements.txt ├── InvestWise - Stock Prediction Model.png +├── LICENSE ├── Market Trend Classification Model/ │ ├── Market Trend Classification Model.ipynb │ ├── MarketTrend Analytics - Classification Model.png @@ -52,7 +57,9 @@ ├── SBIN.csv ├── Stock_Price_Prediction(Updated).ipynb ├── Stock_Price_Prediction.ipynb +├── Stock_Recommendation.ipynb ├── Stock_prediction_Data_Analysis.ipynb +├── Updated_SBIN.csv ├── VWAP_included_stock_price_prediction.ipynb ├── buy_sell_recommendation_system.ipynb ├── candlestick_chart.html @@ -67,9 +74,22 @@ │ ├── 085ee2d1-3544-4bed-a558-5b0b801e806b.jpeg │ ├── 6c9ebb5b-a8ed-44de-8842-bf8f5c25990f.jpeg │ └── f23e9194-72de-438d-bd69-744667680d3e.jpeg +├── main.py +├── nifty_500.csv +├── prediction.pkl ├── reduced_redundancy_stock_price_prediction.ipynb ├── repo_structure.txt ├── requirements.txt -└── stock_market(complete).ipynb +├── sentiment_model.h5 +├── static/ +│ └── css/ +│ ├── home.css +│ └── stock.css +├── stock_data.csv +├── stock_market(complete).ipynb +├── stock_sentimental.ipynb +└── templates/ + ├── home.html + └── stock.html ``` \ No newline at end of file diff --git a/README.md b/README.md index 6faa9e7..399e97f 100644 --- a/README.md +++ b/README.md @@ -155,7 +155,16 @@ We welcome contributions to this project! Please see our [Contributing.md](./CON ## 🌍 Our Valuable Contributors -[![Contributors](https://contrib.rocks/image?repo=rohitinu6/Stock-Price-Prediction)](https://github.com/rohitinu6/Stock-Price-Prediction/graphs/contributors) +

+ +

+ +### 🎉 Thank You to All Our Amazing Contributors! 🎉 + +We are incredibly grateful for your dedication and hard work. Your contributions have been invaluable in making this project a success. Thank you for being a part of our journey! + +**Let's continue to build great things together! 🚀** + ## 📝 License diff --git a/repo_structure.txt b/repo_structure.txt index 51ea91e..3af122d 100644 --- a/repo_structure.txt +++ b/repo_structure.txt @@ -1,7 +1,11 @@ ├── ARIMA/ │ ├── ARIMA_V2.ipynb │ ├── README.md -│ └── hybrid.ipynb +│ ├── hybrid.ipynb +│ └── saved_model/ +│ ├── arima_model.pkl +│ ├── lstm_model.h5 +│ └── scaler.pkl ├── Contributing.md ├── Data/ │ ├── SBI Test data.csv @@ -26,6 +30,7 @@ │ ├── reduced_redundancy_stock_price_prediction.ipynb │ └── requirements.txt ├── InvestWise - Stock Prediction Model.png +├── LICENSE ├── Market Trend Classification Model/ │ ├── Market Trend Classification Model.ipynb │ ├── MarketTrend Analytics - Classification Model.png @@ -48,7 +53,9 @@ ├── SBIN.csv ├── Stock_Price_Prediction(Updated).ipynb ├── Stock_Price_Prediction.ipynb +├── Stock_Recommendation.ipynb ├── Stock_prediction_Data_Analysis.ipynb +├── Updated_SBIN.csv ├── VWAP_included_stock_price_prediction.ipynb ├── buy_sell_recommendation_system.ipynb ├── candlestick_chart.html @@ -63,7 +70,20 @@ │ ├── 085ee2d1-3544-4bed-a558-5b0b801e806b.jpeg │ ├── 6c9ebb5b-a8ed-44de-8842-bf8f5c25990f.jpeg │ └── f23e9194-72de-438d-bd69-744667680d3e.jpeg +├── main.py +├── nifty_500.csv +├── prediction.pkl ├── reduced_redundancy_stock_price_prediction.ipynb ├── repo_structure.txt ├── requirements.txt -└── stock_market(complete).ipynb \ No newline at end of file +├── sentiment_model.h5 +├── static/ +│ └── css/ +│ ├── home.css +│ └── stock.css +├── stock_data.csv +├── stock_market(complete).ipynb +├── stock_sentimental.ipynb +└── templates/ + ├── home.html + └── stock.html \ No newline at end of file