Implementing Trade Strategy with HMM Model: A Practice on Some Telecommunication Companies
Chuanzhong Sun
SAS Institute Inc, Cary, USA.
DOI: 10.4236/jss.2018.63002   PDF    HTML   XML   1,712 Downloads   6,003 Views   Citations

Abstract

Stock trend prediction has been a challenge task for many traders. For stock traders, promptly predicting the bearish or bullish market status is very helpful in reducing the losses and increasing returns. This paper presents a Hidden Markov Models (HMM) approach for determining stock trend status: “upper trend”, “low trend”, or “Medium”. And a simple trade strategy based on the estimated trend status is formulated. Then the strategy is applied to three telecommunication stocks: AT & T, Verizon, and China Mobile for trade performance evaluation. We use the real daily trading data of NYSE from October 25, 2016 to November 06, 2017 to test performance of the strategy. The results show that the strategy is actually very encouraging. For the generally bearish period of telecommunication sector, a 9.7% and 3.7% return rate can still be achieved for AT & T and Verizon. For China Mobile, although the return is negative, the final loss is still 2% less than if “Buy and Hold”.

Share and Cite:

Sun, C. (2018) Implementing Trade Strategy with HMM Model: A Practice on Some Telecommunication Companies. Open Journal of Social Sciences, 6, 12-19. doi: 10.4236/jss.2018.63002.

1. Introduction

Predicting stock price has been a challenging task for many investors and researchers. Methods such as time Series Models (ARIMA), Neural Networks, Fuzzy Logic and Support Vector Machines have been used to predict the stock price, or determine the stock trend. In addition, there have been some applications using Hidden Markov Model (HMM) for this problem. Md. Rafiul Hassan and Baikunth Nath [1] predicted the next day price by using the “similar” historical difference of neighboring daily prices. The “similarity” was identified by comparing current model likelihood value with likelihood values of a previous dataset window under the currently estimated HMM model. Nguyen [2] used HMM with both single and multiple observations to forecast economic regimes and stock prices. In addition, Aditya Gupta [3] presented the Maximum a Posteriori HMM approach for forecasting stock values for the next day. The HMM model describes the temporal relationships of observed data with an unobserved Markov Chain. This feature is similar to fact that the observed stock prices are determined by unobserved market trend (or mood). So applying HMM for stock prediction is a pretty intuitive choice.

In this paper, instead of predicting the stock price, we try to determine the current market price level for a stock with Gaussian type HMM. Based on the estimated trend levels, our trade strategy is very simple: sell when stock is in high trend level and buy when it is in low trend. We apply this strategy to three telecommunication stocks: AT & T, Verizon, and China for 260 trading days from October 25, 2016 to November 06, 2017. With $100 in hand on October 25, 2016, we compare the trade results with a simple “buy and hold” practice. The results show that even for a general bearish period for telecommunication sector for tested period, we can still get a reasonable benefit by using the HMM model strategy.

This paper is organized as follows: Sections 2 gives general description of HMM model and related estimation and evaluation algorithms. Section 3 introduces the three stock price series used for model calibration and model performance test. In addition, to mimic the real stock trade scenario, method of one day shift for data block window for is also described. Section 4 presents the simulated results. Section 5 includes conclusions and discussions of possible modifications.

2. The Hidden Markov Model

2.1. Definition of a Hidden Markov Model

Hidden Markov Model assumes that the distributions of the observation series are determined by an unobserved Markov Chain Process. Rabiner, L. R. [4] provided a good introduction to HMM model. A time discrete observation vector O = ( O 1 , O 2 , , O s T ) is said to satisfy a Hidden Markov Model, if

a) s 0 , s 1 , , s T is a Markov Chain Process ;

b) Given the state of s t , the observation O t is independent of other observations and states;

c) For a fixed state, the observation O t is generated according to a fixed probability law.

Given a state k, the probability of O t can be specified as:

b k ( O t ) = probability mass function, if O t is discrete

b k ( O t ) = m = 1 J C k m b k m ( O t ) , if O t is continuous

where each b k m ( O t ) is density defined by

b k m ( O t ) = 1 2 π d | k m | exp ( 1 2 ( O t u k m ) k m 1 ( O t u k m ) )

And C k m is the mixture coefficient for the m t h mixture in state k. In a simple case, j can be one, and b k ( O t ) becomes Gaussian in each state, and the HMM model is called Gaussian HMM. In such a case, the conditional observation probability can de described by: B = b k ( O t ) , k = 1 , , M .

Let A = ( a i , j ) is the transition probability matrix, and π = ( π i ) is the initial state probability, i = 1 , , M , j = 1 , , M . AHMM model can be described by parameters: ( A , B , π ) = λ .

2.2. Three Basic Problems Can Be Resolved with HMM

A full HMM model can be described by parameters: ( A , B , π ) = λ . Given the form of HMM model as discussed above, three basic problems can be resolved:

1) Given the observation vector O = ( O 1 , O 2 , , O T ) and model parameters ( A , B , π ) , what is P(O|λ)?

2) Given the observation vector O = ( O 1 , O 2 , , O T ) and model parameters ( A , B , π ) , how to guess the “best” state sequence who generates the O?

3) How to estimate the model parameters λ to maximize P(O|λ)?

2.3. Three Algorithms to Solve the Problems

The algorithms that can be used to solve these problems are:

1) Forward Algorithm

α t ( i ) = P ( O 1 , , O t , s t = i | λ )

2) Backward Algorithm

β t ( i ) = P ( O t + 1 , , O T | s t = i , λ )

3) Viterbi Algorithm

δ t ( i ) = max s 1 , s 2 , , s t 1 P ( s 1 s 2 , s t 1 , s t = i , O 1 , , O t , | λ )

With α t ( i ) the evaluation problem can be resolved as: P ( O 1 , , O t | λ ) = L t = i = 1 M α t (i)

Maximizing L T will solve the learning problem. With β t ( i ) the filtering and smoothing problem can be resolved by:

f t ( i ) = P ( s t = i | O 1 , , O t , λ ) = P ( O 1 , , O t , s t = i | λ ) / P ( O 1 , , O t | λ ) = α t ( i ) / L t

s t ( i ) = P ( s t = i | O 1 , , O t , λ ) = α t ( i ) β t ( i ) / j M α t ( j ) β t (j)

Finally, the Decoding problem can be resolved with Viterbi Algorithm:

1) δ 1 ( i ) = π i b i ( O 1 ) , 1 i M ,

ψ 1 ( i ) = 0

2) δ t ( i ) = max 1 i M [ δ t 1 ( i ) a i j ] b j ( O t ) , 1 i M , 2 t T

ψ t ( j ) = arg max 1 i M [ δ t 1 ( i ) a i j ] , 1 i M , 2 t T

3) P * = max 1 i M [ δ T ( i ) ]

s T * = arg max 1 i M [ δ T ( i ) ]

4) s t * = ψ t + 1 ( s t + 1 * ) , t = T 1 , T 2 , , 1

3. Data, Model Calibration, and Trade Strategy

3.1. Data

For the three telecommunication company AT & T, Verizon, and China Mobile, we obtain daily stock close price of NYSE from google finance service (finance.google.com). Totally 760 trading day prices from October 30, 2014 to November 06, 2017 are pulled for each company. Figure 1 displays the closing price of the three stocks from October 25, 2016 to November 06, 2017. We can see that the stocks are generally in bearish status before August 2017. Figure 2 displays the prices for 760 days from October 30, 2014 to November 06, 2017.

3.2. Model Calibration

To mimic the actual trade scenario, we use the last 260 trading prices from October 25, 2016 to November 06, 2017 for model performance test, assuming that we have $100 in hand on October 25, 2016. Start on October 25, 2016, for each trading date in the test period, we use the last 500 trading prices before that date to calibrate the HMM model and obtain the current stock trend level state with Viterbi method. We then make the decision of buying or selling based on the

Figure 1. Closing Price from October 25, 2016 to November 06, 2017.

Figure 2. Closing Price from October 30, 2014 to November 06, 2017.

estimated trend level status. After that we move to make the decision for the next trading date, and repeat the process by moving the training dataset one day forward, until we reach November 06, 2017. PROC HMM in SAS Econometrics 8.2 [5] is used for model estimation.

Although the number of states for a HMM model can be determined with criteria such as AIC, BIC, etc., we use a three states HMM model here, assuming that the stock trend may have “Upper trend”, “Lower trend”, or “Medium” state.

3.3. HMM Based Trading Strategy

The HMM based trading strategy used here is pretty straightforward: on each test date, if the calibrated HMM indicates the stock is currently in “Upper trend”, we will sell if we have the stock. If HMM tells that it is in “Lower trend”, we will buy if we have cash in hand. Otherwise do nothing. Finally, the trading results are compared with “Buy and Hold” at the end of the test date. We did not consider the costs of trading fees here.

4. HMM Based Trading Results

Table 1 contains the final market values with HMM based trade strategy, assuming that there was $100 cash at the beginning of the test period. It shows that even for a generally bearish period for AT & T and Verizon, significant positive returns are obtained with HMM based strategy. For China Mobile, although the return is negative, the loss of HMM based trading is still 2% less than “Buy and Hold” by end of the testing period.

Table 1. Market values at end of test period: November 06, 2017.

a) Assume that there was $100.00 at beginning of the testing.

Figure 3. Comparing HMM based trade results with buy and hold: AT & T.

Figure 4. Comparing HMM based trade results with buy and hold: Verizon.

Figure 5. Comparing HMM based trade results with buy and hold: china mobile.

Figure 3 to Figure 5 compare HMM based trading results with “Buy and Hold” at each testing date for AT & T, Verizon, and China Mobile respectively. In the figures market_value_trade1 and market_value_bh represent HMM based and “Buy and Hold” results respectively. Figure 3 shows that with HMM model, we get out of market on December 12, 2016, hence avoid the losses for the coming down trend after that.

Similarly, for Verizon, HMM successfully tell us to get out of the market from December 14, 2016 to April 25, 2017, and avoid the big downturn from January to March of 2017. For China Mobile, although the final return is negative, HMM model helps us not to enter the market until November 02, 2016. That reduces our final losses about 2%.

5. Conclusions

This paper demonstrates an approach to use a simple Gaussian Hidden Markov Model to determine the stock price “trend status” and make the stock trade decision based on that. The trading results are evaluated for 260 trading dates from October 25, 2016 to November 06, 2017. Trading results show that for the generally bearish period, a 9.7% return is achieved for AT & T with HMM based strategy, comparing with more than 10% loss with “Buy and Hold” trade. Similarly, for Verizon, a 3.7% return is achieved with HMM model, while a “Buy and Hold” results in about 5% loss. For China Mobile, HMM model delays our entering into the market until November 02, 2016, hence reduces our final losses by 2%, comparing with “Buy and Hold”.

It seems that in our cases, HMM model can indicate a downturn promptly and hence help us to avoid possible losses. For people who are interested in this application, possible modifications or improvements include:

1) In this paper we apply the HMM model directly on the stock close price. Hence our HMM model in fact juts tell use which “level” status the stock price is at. It will be interesting to see how it will work if apply the HMM on returns, or difference.

2) We use the Viterbi algorithm to determine the “current status”. It is actually the “status” of last traded date. It is possible to use the one step ahead forecast to determine the current status.

3) The Simple Gaussian HMM used here can describe relatively long term pattern of the observation level status. To capture the short variability and influence of other factors, a HMM with regression, or auto regression may be considered.

4) The Gaussian assumption for distribution of each state could be extended to Gaussian mixture distribution.

Finally, it should be pointed out that the stocks in our example have stock prices up and down periodically for period we considered. If a stock is in a pure long term growing, or downing period, the trading strategy described here may not be modified.

Conflicts of Interest

The authors declare no conflicts of interest.

References

[1] Hassan, Md.R. and Nath, B. (2005) Stock Market Forecasting Using Hidden Markov Models: A New Approach. Proceeding of IEEE 5th International Conference on Intelligent Systems Design and Applications.
[2] Nguyen, N. and Nguyen, D. (2015) Hidden Markov Model for Stock Selection, Journal of Risks in Special Issue: Recent Advances in Mathematical Modeling of the Financial Markets, Risks, 3, 455-473. https://doi.org/10.3390/risks3040455
[3] Gupta, A. and Dhingra, B. (2012) Stock Market Prediction Using Hidden Markov Models. Students Conference on Engineering and Systems (SCES), Allahabad, 16-18 March 2012. https://doi.org/10.1109/SCES.2012.6199099
[4] Rabiner, L.R. (1989) A Tutorial on Hidden Markov Models and Selected Applications in Speech Recognition. Proceedings of the IEEE, 77, 257-286. https://doi.org/10.1109/5.18626
[5] SAS Online Documentation for HMM Procedure/SAS Econometrics. http://support.sas.com/documentation/onlinedoc/econometrics/index.html

Copyright © 2024 by authors and Scientific Research Publishing Inc.

Creative Commons License

This work and the related PDF file are licensed under a Creative Commons Attribution 4.0 International License.