Time-Series and LSTM Models: A Comparative Study for Stock Price Prediction

8 min read

This project is about comparative study of time-series analysis techniques and ML techniques from the perspective of Stock/Index price prediction. Initial analysis was conducted using time-series modelling techniques eg. ARMA, ARIMA, etc. followed by the analysis of different ML models to predict the next day stock/index price.

After extensive theoretical study of different ANN models and based on input from a mentor, the LSTM model was finalized. Different optimization parameters and techniques on various evaluation criteria e.g. accuracy and precision were analyzed.

Both the prediction techniques i.e. ARIMA and LSTM gave almost similar results in terms of evaluation of predicted price, but it was found that ARIMA predictions are more accurate i.e., less RMSE for predicted price.

This article is the final project submitted by the author as a part of his coursework in the Executive Programme in Algorithmic Trading (EPAT) at QuantInsti. Do check our Projects page and have a look at what our students are building.


About the author

Ashish Jain pic EPAT

With over 15 years in the IT industry, Ashish Jain is a seasoned professional specializing in Treasury and Investment Banking. Currently a Senior Manager at Adenza, Ashish oversees technical aspects of multiple Calypso Implementation and Upgrade projects. Holding a Master's Degree in Computer Science from Thapar University, Ashish blends academic excellence with practical expertise, driving success in IT solutions and project management.


Project Abstract

This project is about comparative study of time-series analysis techniques and ML techniques from perspective of Stock/Index price prediction. After evaluation of performance of predicted price, low frequency trading strategy can be built using best model or combination of multiple models.


Introduction

I am new to trading world but have good experience with programming. My motivation was to build decent trading strategy for low-frequency trading using deep learning technologies or time-series modeling. Initial idea was to use time-series model output as input to machine learning models.

But, based on discussion with my mentor, I understood that it’s better to develop comparative study of both models as both are altogether different techniques. Once stock price prediction is available with reasonable accuracy, strategy can be built in a variety of ways.


Data Mining

I had a significant challenge in sourcing high-quality data. As a retail trader, I had a limited budget and I settled on yahoo finance which was giving me adjusted closing prices. Also, as per discussion with mentor, Yahoo Finance is very good option for this kind of comparative study and for scope of low frequency trading.

But for High Frequency Trading (HFT), paid data can be used to ensure quality and consistency of data.

I did consider downloading directly from the National Stock Exchange (NSE). The initial results were promising but the python wrapper to do this efficiently failed to work consistently hence I have elected to use yahoo finance.

I have used 5 years of historical data for my project. I could go back further but given the changes in India, I did not see the value in training a model on old data.


Data Analysis

Initially I started my analysis using time-series modelling techniques. As time-series modelling requires series to be stationary and I used Nifty Index price for my analysis which is not stationary. So, I considered using return series as it was stationary according to Augmented Dickey Fuller Test (ADF) and ACF/PACF analysis.

But the prediction of return price and using it to build strategy brings its own complexity. So, I dropped the idea of using return series.

Then I found that differencing by order of 1 made Nifty price series stationary, so I considered using ARIMA model for Price forecasting. To get best model, need to find best values for AR and MA parameters.

There are two different approaches to get same:

  • Based on significant lags from ACF and PACF chart
  • Using AIC Score criteria for different combinations of parameters.

As you keep on increasing lag numbers, model becomes computationally intensive and takes too much of time to produce results e.g., it takes around 20 mins for 10 years of data. So, I kept parameters levels in range of 1-8.

First, I found initial trail params from ACF/PACF and then I used AIC score criteria to get top three set of params. Then I performed trial/error for those three params and found best param set i.e., 6,1,2.

I evaluated the model based on two criteria:

  • Root Mean Squared Error/Mean Absolute Percentage Error
  • Price Direction prediction

Below are the results of best performing time-series model:

  • The Mean Absolute Error is 109.84
  • The Mean Squared Error is 20378.46
  • The Root Mean Squared Error is 142.75
  • The Mean Absolute Percentage Error is 0.63

Direction Prediction (1 indicates correct direction and 0 indicate wrong direction prediction):

  • 0 -- 1041
  • 1 -- 190

Then I started analysis of ML model to predict next day stock/index price. My mentor provided much useful information/guidance over here and suggested to explore different ANN models, ML techniques before finalizing any ANN model. After extensive theoretical study of different ANN models and based on inputs from mentor, I decided to go ahead with LSTM model.

Initially I built single variate LSTM model which was taking only past price as input. Then based on inputs from mentor, I added some common technical indicators as input features to my LSTM model, eg.

I used MinMax scaler for normalization of various input parameters/features. I used LSTM model with 5 layers. I tried different activation functions e.g., ‘tanh’, ‘relu’ based on theoretical study as well as trial/error. I got the best performance for tanh as input/middle-layer activation functions and ‘linear’ as output activation function. As per suggestion from mentor, I also tried different epochs and batch sizes.

I got best performance for epochs of size 100 with early stopping and batch size of 10. I used 5 years of historic data and train/test split was 80:20.

The best model performance was as below:

  • The Mean Absolute Error is 151.99
  • The Mean Squared Error is 34575.89
  • The Root Mean Squared Error is 185.95
  • The Mean Absolute Percentage Error is 0.82

Direction Prediction (1 indicates correct direction and 0 indicate wrong direction prediction):

  • 0 -- 132
  • 1 -- 102

Key Findings

The key findings from this project are as below:

  1. Both prediction techniques i.e., ARIMA and LSTM gave almost similar results in terms of evaluation of predicted price, but ARIMA predictions are more accurate i.e., less RMSE.
  2. There is major difference in directional prediction accuracy. LSTM is way better than ARIMA but still it’s less than 50%, so not useful practically.
  3. Higher number of Lags can be used to further increase performance of ARIMA model provided we have sufficient computing resources available.
  4. There are n number of parameters i.e., activation function, number of neurons, number of layers, optimization functions, number of epochs, batch sizes etc. for LSTM model. So best approach is to limit range of various parameters based theoretical study or research available.
  5. But there is no definite logic so trial/error for different parameters is mandatory/recommended to arrive at best model.
  6. It is important to shift predicted price before comparing it with next day close price otherwise model performance will be better due to look ahead bias factor.
  7. Once model is finalized, it should be saved on local file system e.g., using pickle. It can be reused for back testing for different sets of data to avoid long computation time every time.
  8. My analysis was limited to Nifty price series data, but model can be used for other stocks/indexes and fine-tuned for better performance.

Challenges

  1. As time-series models are computationally intensive, it’s practically impossible to test higher lag values on local machine having limited resources.
  2. Python IDEs eg., Spyder gives better performance compared to Jupyter Notebook.
  3. The sourcing of high-quality data is hard and potentially expensive.
  4. Building a Trading Strategy using predicted price is not fully explored. I did vectorized backtesting of LSTM model for NIFTY 10 years data and it produced 13% CAGR for long only trading strategy.
  5. As strategy assumes buying at today’s Close price, which is practically not possible, so program should take available close price before 5mins. of market closing for live trading.
  6. Event based back testing can be used to further refine model, entry and exit criteria of trading strategy e.g., stop loss, trailing stop loss, profit booking etc...
  7. I used simple strategy by generating buy signal if predicted price is higher by 1% of today’s close price. Different varieties of strategies eg., using both Buy/Sell Signals, taking current day Open price as Input to predict today’s Close price, predicting direction only etc. can be evaluated for better returns.

Implementation Methodology

  • The project has been tested with the nifty50 index data from yahoo finance. It was not possible to test the project with broker supplied data due to limited budget.
  • All programs are developed in Python using Jupyter notebook and Spyder IDE

Conclusion

It is possible for a retail trader to build an effective strategy that uses machine learning or time-series modelling. Careful feature selection and feature engineering are needed to begin to use the strategy in a production environment. Extensive Trial-error is recommended to test performance for different combination of model params.

If you too want to learn various aspects of Algorithmic trading then check out our algo trading course which covers training modules like Statistics & Econometrics, Financial Computing & Technology, and Algorithmic & Quantitative Trading. EPAT equips you with the required skill sets to build a promising career in algorithmic trading. Enroll now!


Annexure/Codes

Below Python files are attached and their functionality in brief is as below:

  • timeseries_nifty_arima.py – It use ARIMA model for time-series based forecasting.
  • timeseries_nifty_return.py – It uses ARIMA model for return prediction.
  • aic_score.ipynb – It has logic to decide best ARIMA model based on AIC score.
  • Nifty_lstm.py – It uses single-variate LSTM model which has only Close price as input to model for nifty price prediction.
  • nifty_lstm_model_reuse.py – It takes common tech. indicators as input features and uses LSTM model for nifty price prediction. It also contains code for basic strategy based on predicted price and its back-testing for last 10 years of data.
  • nifty_18_09.csv – It contains nifty price data for last 5 years which is downloaded from yahoo finance.
  • tsa_functions_quantra.py – It’s provided by QuantInsti and contains commonly required utility functions e.g., analyzing strategy performance and model evaluation.


Bibliography

Web links reference used for Time Series Modelling:

Web links reference used for Machine Learning:

Udemy Courses:

  • Deep Learning: Recurrent Neural Networks in Python
  • time-series-analysis-an

Disclaimer: The information in this project is true and complete to the best of our Student’s knowledge. All recommendations are made without guarantee on the part of the student or QuantInsti®. The student and QuantInsti® disclaim any liability in connection with the use of this information. All content provided in this project is for informational purposes only and we do not guarantee that by using the guidance you will derive a certain profit.

Advanced Algorithmic Trading Course