tuncozturk / Capstone-Project

Predicting stock market movement with EDA and Keras

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Machine Learning for Day Trading

Capstone Project

Please fill out:

  • Student name: Arseniy Tyurin
  • Student pace: self paced
  • Scheduled project review date/time: 11/11/19, 5:00PM (GMT-5)
  • Instructor name: Eli Thomas
  • Blog post URL: Machine Learning for Day Trading

Introduction

Day trading is speculation in securities, specifically buying and selling financial instruments within the same trading day, such that all positions are closed before the market closes for the trading day. Traders who trade in this capacity with the motive of profit are therefore speculators.

The project is broken down into 3 sections. All the steps described here For detailed information please refer to separate file.

Fundamentals

Value of the company:

  • Intrinsic value (estimated by future dividends)
  • Book value (assets of the company owns)
  • Market value (stock on the market)

Technical Analysis

1. When is technical analysis effective:

  • Individual indicators weak
  • Combinations stronger
  • Look for contrasts (stock vs market)
  • Shorter time periods

2. When does technical analysis have value?

  • Short periods of time (from milliseconds to days)

3. How to test the model?

  • Backtesting

Efficient Markets Hypothesis

The efficient-market hypothesis (EMH) is a hypothesis in financial economics that states that asset prices reflect all available information. A direct implication is that it is impossible to "beat the market" consistently on a risk-adjusted basis since market prices should only react to new information.

- Large number of investors
- New information arrives randomly
- Prices adjust quickly
- Prices reflect all available information

Where does information come from

- Price/volume
- Fundamental
- Exogenous (information about the world that affects stock price)
- Company insiders

Types of analysis:

- fundamental (price is below its value)
- technical:
    - historical data and volume only
    - compute statistics called indicators (momentum, simple moving average, bollinger bands)
    - indicators are heuristics

1. Features Engineering

Data was downloaded from Yahoo Finance via pandas datareader

TSLA

Data provides daily information about stock price and volume.

Technical Indicators

  • Moving Average (lagging) analyze whether a market is moving up, down, or sideways over time.
  • Bollinger Bands (lagging) measure how far a price swing will stretch before a counter impulse triggers a retracement.
  • Relative strength indicators (leading) measure oscillations in buying and selling pressure.
  • MACD (leading) evaluate the speed of price change over time.
  • Volume indicators (leading or lagging) tally up trades and quantify whether bulls or bear are in control.

TSLA

2. Exploratory Analysis

Bollinger Bands

MACD

RSI

Stocks Return

3. Machine Learning

3.1 Baseline Model

Baseline models is a benchmark for evaluation of more complex models. Baseline model predict next day stock return

Baseline Model Accuracy

3.2 ARIMA

ARIMA Predictions

3.3 Sentiment Analysis

Tesla News Sentiment

3.4 XGBOOST

Features Importance

3.5.1 LSTM

LSTM

3.4.2 Convolutional Neural Network

3.5.4 18 Stocks

CONV on all stocks

3.5.4 Bayesian Optimization

Bayesian Optimization

3.6 Finding Similar Patterns

Accuracy 50%

3.7 Q-Learning

3.7.1 MACD

Tesla Trading History

Tesla Trading History

3.7.2 Bollinger Bands

Tesla Trading History

Conclusion

  • ARIMA model can't surpass baseline model accuracy due to the historical data stochastic behaviour.
  • Convolutional model prone to overfitting, resulting on very good accuracy on training set, and extremely poor accuracy on testing set.
  • Recurrent (LSTM) neural network can't learn from training data, averaging on 50% accuracy both on training and testing data
  • Bayesian optimization didn't improve accuracy of convolutional network
  • Neural Network architecture and complexity doesn't affect results of the model performance
  • Predictions based on matching patterns from testing data with patterns from testing didn't surpass 50% accuracy
  • Q-Learning showed good results for short term investment, especially Bollinger Bands

Future Work

  • Incorporate fundamental analysis with historical data
  • Add recommendations from trading platforms
  • Use twitter as a supplement to news data
  • Expand analysis to stock from different industries
  • Add more rules to swing trading strategy with technical indicators

References

About

Predicting stock market movement with EDA and Keras


Languages

Language:Jupyter Notebook 99.9%Language:Python 0.1%