0% found this document useful (0 votes)
19 views

Stock Price Prediction

The document discusses stock price prediction using machine learning models. It introduces stock markets and how stock prices are determined. It then describes the problem statement, requirements, and approaches that could be used including recurrent neural networks and LSTMs. It provides details on how LSTMs work and includes an activity diagram of the implementation process.
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)
19 views

Stock Price Prediction

The document discusses stock price prediction using machine learning models. It introduces stock markets and how stock prices are determined. It then describes the problem statement, requirements, and approaches that could be used including recurrent neural networks and LSTMs. It provides details on how LSTMs work and includes an activity diagram of the implementation process.
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/ 12

STOCK PRICE PREDICTION

PRESENTED BY:
SHIVANANDA B-ENG17CS0207
SIDDHARTH NAYAK-ENG17CS0213
SREENIVAS S-ENG17CS0214
SHASHANK GOWDA NC-ENG17CS0204
INTRODUCTION

 A stock market is a public market for the trading of company


stock.
 Stock market allows us to buy and sell units of stocks
(ownership) of a company.
 If the company’s profits go up,then we own some of the profits
and if they go down, then we lose profits with them.
 If more sellers than buyers, stock prices tend to fall. Conversely,
when more buyers than sellers, stock prices tend to rise
INTRODUCTION
HOW TO READ A STOCK TABLE
PROBLEM STATEMENT
• To accurately predict the future closing value of a given stock
across a given period of time in the future.
• Use different machine learning and deep learning models
available and compare them in terms of graphical analysis.
REQUIREMENTS

Hardware requirements:
 2GB RAM
 5GB HARD DISK
 I3 processor or above

Software requirements
 NumPy
 pandas from sklearn
 import matplotlib
 Python notebook
APPROACHS TO SOLVE:RECURRENT NEURAL
NETWORK + LSTM
LSTM (Long Short Term Memory)
LSTMs are explicitly designed to avoid the long-term dependency
problem. Remembering information for long periods of time is practically
their default behavior, not something they struggle to learn!
LSTM (How it works?)
The key to LSTM is the Memory cell state which stores the information.
It runs straight down the entire chain.
LSTM has the ability to remove or add information to these cell state,
regulated by structures called gates.
Gates are composed of sigmoid neural net layer and a multiplication
operation.
Sigmoid layer outputs zero or one.
RECURRENT NEURAL NETWORK +
LSTM
LSTM (How it works?)
There are three gates to protect
and control the cell states.
• forget gate
• input gate
• output gate
ACTIVITY DIAGRAM
IMPLEMENTATION
IMPLEMENTATION
Thank you

You might also like