0% found this document useful (0 votes)
102 views9 pages

Stock Price Predictor 1.1

This document summarizes a student presentation on using machine learning to predict stock prices. The presentation discusses using an LSTM neural network model with the Tata Global Beverages Limited stock dataset to predict stock returns. It then describes building a dashboard using Plotly Dash and additional stock datasets for analysis. Key steps discussed include data preprocessing, building and training the LSTM model, and using the trained model to predict future stock prices in the test set.

Uploaded by

NIYATI KARANI
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
102 views9 pages

Stock Price Predictor 1.1

This document summarizes a student presentation on using machine learning to predict stock prices. The presentation discusses using an LSTM neural network model with the Tata Global Beverages Limited stock dataset to predict stock returns. It then describes building a dashboard using Plotly Dash and additional stock datasets for analysis. Key steps discussed include data preprocessing, building and training the LSTM model, and using the trained model to predict future stock prices in the test set.

Uploaded by

NIYATI KARANI
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 9

STOCK PRICE

PREDECTION USING
MACHINE LEARNING
TEAM
PRESENTATION
MEET BHANUSHALI  KINJAL VAGHASIYA 
 TE A EXTC TE B EXTC
ROLL NO 05 ROLL NO 60

NIYATI KARANI  MEET BHANSALI 


TE B EXTC  TE A EXTC 
 ROLL NO 01 ROLL NO 04

2
INTRODUCTION
▹ Machine learning has significant applications in the stock
price prediction. In this machine learning project, we will be
talking about predicting the returns on stocks. This is a very
complex task and has uncertainties. We will develop this project
into two parts:
▸ First, we will learn how to predict stock price using
the LSTM neural network.
▸ Then we will build a dashboard using Plotly dash for
stock analysis.

3
DATASETS
▹ To build the stock price prediction model, we will use the NSE
TATA GLOBAL dataset. This is a dataset of Tata Beverages from
Tata Global Beverages Limited, National Stock Exchange of
India: Tata Global Dataset
▹ To develop the dashboard for stock analysis we will use another
stock dataset with multiple stocks like Apple, Microsoft,
Facebook: Stocks Dataset

4
LSTM (LONG SHORT-
TERM MEMORY)
LSTMs are very powerful in sequence prediction problems
because they’re able to store past information. This is important
in our case because the previous price of a stock is crucial in
predicting its future price.

In order to build the LSTM, we need to import a couple


of modules from Keras:
Sequential for initializing the neural network
Dense for adding a densely connected neural network layer
LSTM for adding the Long Short-Term Memory layer
Dropout for adding dropout layers that prevent overfitting

6
PREDICTING
FUTURE STOCK USING
THE TEST SET
In order to predict future stock prices we need to do a
couple of things after loading in the test set:
Merge the training set and the test set on the 0 axis.
Set the time step as 60
Use MinMaxScaler to transform the new dataset
Reshape the dataset.

8
CONCLUSION “
There are a couple of other techniques of predicting stock prices
such as moving averages, linear regression, K-
Nearest Neighbours, ARIMA and Prophet. These are techniques that one
can test on their own and compare their performance with
the Keras LSTM. 

You might also like