Shandilya21 / stock_movement_prediction

Predictive Model for Future Stock Price Movement using TensorFlow and Keras

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GitHub issues GitHub forks GitHub stars


Logo

Predictive Model for Stock Price Movement

Table of Contents

About The Project

This is a implementation of stock price movement considering the basic and fundamental analysis of stock market. Here, We consider Apple Inc. (APPL:NYSE) quarterly stock price to train our machine learning algorithms. The predicted value is close to the actual market price and hence it will also be useful even for more 'stocks', for eg: Microsoft (MSFT: NYSE), Google (GOOG,: NYSE) etc.

Taking a deep dive interest in stock and market price movement, it is almost difficult for trader to study the market analysis for studying the important factors. Here we incorporated a end to end LSTM (Long Short Term Memory Network) algorithms to predict the price movement for refernce stock. Also it can compareable with multiple stocks before making an decision.

Why we need this?

  • Stock market prediction is the act of trying to determine the future value of a company stock or other financial instrument traded on a financial exchange. The successful prediction of a stock's future price will maximize investor's gains.

Built With

Getting Started

Below the the basic step to reproduce the code with few commands.

  1. Clone the repository
git clone https://github.com/Shandilya21/stock_movement_prediction.git

Prerequisites

pip install -r requirement.txt

Usage

The code is working for Apple Inc. stock price, Also you can produce results for other sock prices and amake a comparable plot. The default number of epochs = 5. Feel free to set the epochs from Stockprediction.py.

python3 Stockprediction.py   

Results


Logo

After epoch @5

Train RMSE: 1.78
Test RMSE: 2.99
Last Day Value: 166.8632354736328
Next Day Value: 176.5559539794922

After epoch @20

Train RMSE: 1.24
Test RMSE: 1.39
Last Day Value: 158.89990234375
Next Day Value: 157.1401824951172

Stock Prediction with Technical Analysis

Technical Analysis: The study and use of price and volume charts and other technical indicators to make trading decisions. Technical analysis attempts to use past stock price and volume information to predict future price movements. Fundamentally, technical analysis shows in graphic form investor sentiment, both greed and fear. Understanding that concept is key to understanding technical analysis and being able to use it effectively to trade securities. With proper technical analysis, you can be ready for certain moves, and when your analysis is confirmed by the actual start of the move, trading positions can be taken. Technical analysis can be used for short-term trading or long-term position buying.

Dataset: Data can be downloaded from the kaggle (Data). Create and place the data inside the data folder.

Technical Indicators: There are list many technical indicators for several purpose, here we used mainly three types of Technical analysis to predict the next day stock prices. We have 501 stocks listed from NYSE dataset,(refer the dataset). The prototype work for all the stock names listed in the data.

The Technical Indicators are:

  • Relative Strength Index (RSI): The relative strength index (RSI) is a momentum indicator used in technical analysis that measures the magnitude of recent price changes to evaluate overbought or oversold conditions in the price of a stock or other asset. The RSI is displayed as an oscillator (a line graph that moves between two extremes) and can have a reading from 0 to 100.

  • Stochastic Oscillator: A stochastic oscillator is a momentum indicator comparing a particular closing price of a security to a range of its prices over a certain period of time. The sensitivity of the oscillator to market movements is reducible by adjusting that time period or by taking a moving average of the result. It is used to generate overbought and oversold trading signals, utilizing a 0-100 bounded range of values.

  • Simple Moving Average (SMA): A simple moving average (SMA) calculates the average of a selected range of prices, usually closing prices, by the number of periods in that range

The code is working for all the stock names listed in the data, Also you can produce results for other sock prices and amake a comparable plot. The default number of epochs = 5. Feel free to set the epochs from StockPreds_withtechnical.py. Below is a demo for the setup.

Run Experiements

Before performing experiments, SET the config for the data path. In config.py Change the DATA_PATH to your data path location.

You can now perform the experiments and calculate the future prices for any stock name you want. refer the complete chart of stocks in data/price.csv.

python StockPreds_withtechnical.py --stock_name GOOG --use_ta --indicator Stoch --epoch 5 (Stochastic Indicator)
python StockPreds_withtechnical.py --stock_name GOOG --use_ta --indicator RSI --epoch 5  (Relative Strength Index)
python StockPreds_withtechnical.py --stock_name AAPL --load_all --epoch 5  (SMA)

However, I have prepared a shell script for testing. you can directly use this script to reproduce the results.

chmod +x run.sh
./run.sh

Results

Here are few reported results related to few stocks with it's data chart

Logo

Roadmap

See the open issues for a list of proposed features (and known issues). Also, if you have any issue, feel free to open a new issue.

Contributing

Contributions are very welcome. If you know how to make this code better, please open an issue. If you want to submit a pull request, please open an issue first.

TODO

  • Add Fundamental Analysis.
  • Add Sentiment Analysis in Stock Prediction.
  • Add Technical Indicators.

References

Distributed under the MIT License. See LICENSE for more information.

Contact

Arunav Shandilya - arunavshandilya96@gmail.com

About

Predictive Model for Future Stock Price Movement using TensorFlow and Keras


Languages

Language:Python 87.8%Language:Shell 12.2%