129 |
├── .gitattributes
├── README.md
├── Tweet.py
├── constants.py
├── localhost-wordpress-20200313-074610-uxz1wx (1).wpress
├── main.py
├── requirements.txt
├── screenshots
├── 1-home-page.png
├── 10-input-symbol.png
├── 11-resuts.png
├── 2-dashboard.png
├── 3-login.png
├── 4-register.png
├── 5-about.png
├── 6-news.png
├── 7-know-more.png
├── 8-currency-converter.png
├── 9-admin-panel.png
└── banner.PNG
├── static
├── 1.jpg
├── 2.jpg
├── 3.jpg
├── 4.jpg
├── ARIMA.jpg
├── ARIMA.png
├── LR.jpg
├── LR.png
├── LSTM.jpg
├── LSTM.png
├── SA.png
├── Trends.jpg
├── Trends.png
├── animate.css
├── animate.min.css
├── bootstrap-RES.min.js
├── bootstrap.css
├── bootstrap.js
├── bootstrap.min-RES.css
├── bootstrap.min.css
├── bootstrap.min.js
├── cryptocoins-colors.css
├── cryptocoins.css
├── custom.min.js
├── d3.min.js
├── dashboard1-init.js
├── datamap-init.js
├── datamaps.world.min.js
├── echarts.js
├── et-line-font.css
├── flag-icon.min.css
├── font-awesome-RES.min.css
├── font-awesome.css
├── font-awesome.min.css
├── fore.png
├── helper.css
├── inner-bg.jpg
├── jquery-RES.min.js
├── jquery.min.js
├── jquery.simpleWeather.min.js
├── jquery.slimscroll.js
├── linea.css
├── logo-2.png
├── logo-3.png
├── logo-4.png
├── logo.png
├── logotile.png
├── main.js
├── materialdesignicons.min.css
├── menuzord.css
├── menuzord.js
├── no.png
├── owl.carousel-init.js
├── owl.carousel.css
├── owl.carousel.js
├── owl.carousel.min.css
├── owl.carousel.min.js
├── owl.theme.css
├── owl.theme.default.min.css
├── popper.min.js
├── responsive.css
├── sidebarmenu.js
├── simple-line-icons.css
├── spinner1.gif
├── spinners.css
├── sticky-kit.min.js
├── style-RES.css
├── style.css
├── themify-icons.css
├── tile7.png
├── top-arrow.png
├── topojson.js
├── twitter-logo.png
├── wall.png
└── weather-init.js
└── templates
├── index.html
└── results.html
/.gitattributes:
--------------------------------------------------------------------------------
1 | *.wpress filter=lfs diff=lfs merge=lfs -text
2 | *.py linguist-detectable=true
3 | *.css linguist-detectable=false
4 | *.js linguist-detectable=false
5 | *.html linguist-detectable=false
6 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Stock-Market-Prediction-Web-App-using-Machine-Learning
2 | **Stock Market Prediction** Web App based on **Machine Learning** and **Sentiment Analysis** of Tweets **(API keys included in code)**. The front end of the Web App is based on **Flask** and **Wordpress**. The App forecasts stock prices of the next seven days for any given stock under **NASDAQ** or **NSE** as input by the user. Predictions are made using three algorithms: **ARIMA, LSTM, Linear Regression**. The Web App combines the predicted prices of the next seven days with the **sentiment analysis of tweets** to give recommendation whether the price is going to rise or fall
3 |
4 | # Screenshots
5 |
6 | Find how the project looks in screenshots folder Or click here
7 |
8 | # File and Directory Structure
9 |
10 | screenshots - Screenshots of Web App 11 | static - static files of flask app: css, images, js, etc. 12 | templates - html files 13 | Tweets.py - structure of Tweets for sentiment Analysis 14 | constants.py - config file for app with Twitter API keys and other details 15 | main.py - main machine learning module 16 |17 | 18 | # Technologies Used 19 |
' + error + '
'); 20 | } 21 | }); 22 | } 23 | 24 | 25 | // init 26 | loadWeather('Dhaka', ''); 27 | 28 | })(jQuery); 29 | -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |129 |