diff --git a/PROJECT_STRUCTURE.md b/PROJECT_STRUCTURE.md index db53de1..a5cfa91 100644 --- a/PROJECT_STRUCTURE.md +++ b/PROJECT_STRUCTURE.md @@ -30,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 @@ -52,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 @@ -67,9 +70,19 @@ │ ├── 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 +├── static/ +│ └── css/ +│ ├── home.css +│ └── stock.css +├── stock_market(complete).ipynb +└── templates/ + ├── home.html + └── stock.html ``` \ No newline at end of file diff --git a/repo_structure.txt b/repo_structure.txt index 51ea91e..35fbfd7 100644 --- a/repo_structure.txt +++ b/repo_structure.txt @@ -26,6 +26,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 +49,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 +66,17 @@ │ ├── 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 +├── static/ +│ └── css/ +│ ├── home.css +│ └── stock.css +├── stock_market(complete).ipynb +└── templates/ + ├── home.html + └── stock.html \ No newline at end of file