Next Article in Journal
Market Reactions to Supply Chain Management Excellence
Next Article in Special Issue
Growth and Debt: An Endogenous Smooth Coefficient Approach
Previous Article in Journal
Bond Risk Premia and Restrictions on Risk Prices
Previous Article in Special Issue
Risk, Return and Volatility Feedback: A Bayesian Nonparametric Analysis
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Forecasting of Realised Volatility with the Random Forests Algorithm

School of Electrical Engineering, Computing and Mathematical Sciences, Curtin University, GPO Box U1987, Perth 6845, Western Australia, Australia
*
Author to whom correspondence should be addressed.
J. Risk Financial Manag. 2018, 11(4), 61; https://doi.org/10.3390/jrfm11040061
Submission received: 8 September 2018 / Revised: 8 October 2018 / Accepted: 9 October 2018 / Published: 11 October 2018
(This article belongs to the Special Issue Nonparametric Econometric Methods and Application)

Abstract

:
The paper addresses the forecasting of realised volatility for financial time series using the heterogeneous autoregressive model (HAR) and machine learning techniques. We consider an extended version of the existing HAR model with included purified implied volatility. For this extended model, we apply the random forests algorithm for the forecasting of the direction and the magnitude of the realised volatility. In experiments with historical high frequency data, we demonstrate improvements of forecast accuracy for the proposed model.

1. Introduction

In this paper, the estimation of historical volatility is considered for financial time series generated by stock prices and indexes. This estimation is a necessary step for the volatility forecast which is crucial for the pricing of financial derivatives and for optimal portfolio selection. The methods of estimation and forecast of volatility have been intensively studied (see, e.g., the references in Andersen and Bollerslev (1997) and in De Stefani et al. (2017); Dokuchaev (2014)).
In pricing of derivatives, option traders use volatility as the input for determining the value of an option using underlying models such as the Black–Scholes’ (Black and Scholes 1973) and Heston’s (1993) option pricing models. Hence, being able to forecast the direction and magnitude of the future volatility on different time horizons will provide advantages in terms of pricing risks and the development of trading strategies.
There is an enormous body of research on modelling and forecasting volatility. Engle (1982) and Bollerslev (1986) first proposed the ARCH model and the GARCH model for forecasting volatility. These models have been extended in a number of directions based on the empirical evidences that the volatility process is non-linear, asymmetry, and has a long memory. Such extensions can be referred to EGARCH—Nelson (1991), GJR-GARCH—Glosten et al. (1993), AGARCH—Engle (1990), and TGARCH—Zakoian (1994). However, studies have found that those models cannot describe the whole-day volatility information well enough because they were developed within low-frequency time sequences.
With the appearance of high-frequency data, Andersen et al. (2003) introduced a new volatility measure. This proxy was known as realized volatility (RV). In comparison with the GARCH-type measures, realised volatility is preferred as it is a model-free measure. Hence, it provides convenience for calculation. In addition, the realised volatility takes high-frequency data into consideration and exhibits the long memory property. There have been many forecasting models that have been developed to predict the realised volatility. Among those models, the heterogeneous autogressive model for realised volatility (HAR) by Corsi (2003) is one to name. The HAR-RV model was developed in accordance with the heterogeneous market hypothesis proposed by Muller et al. (1997) and the long memory character of realised volatility by Andersen et al. (2003). Empirical studies have shown that the HAR model has high forecasting performance for future volatility, especially for out-of-sample data with different time horizons (Corsi 2003; Khan 2011).
Another commonly used volatility measure is the implied volatility. The implied volatility is often derived from the observed market option prices and is regarded as the fear gauge Whaley (2000). The implied volatility fluctuates with stock movement, strike price, interest rate, time-to-maturity, and option price. To reduce the impact of stock price movement, a so-called “purified” implied volatility was introduced in Luong and Dokuchaev (2014). In the present paper, we show that that this volatility measure contains some information about the future volatility.
To produce rules for prediction for the classes and the regression of the outcome variables, classification and regression tree models and other machine learning techniques have been developed in the literature (see the references in De Stefani et al. (2017)). This paper explores the related random forests algorithm to improve the forecasting of realised volatility in the machine learning setting.
This algorithm is constructed to predict both the direction and the magnitude of realised volatility, based on the HAR model framework with the inclusion of the purified implied volatility.
The paper is structured as follows. In Section 2, we provide the background of the volatility measures, the classical HAR model, and the random forests algorithm. We then discuss our proposed model and methodology and their results in Section 3. Section 4 provides discussion of the study, and we conclude the results of this study in Section 5.

2. Materials and Methods

2.1. Random Forests Algorithm

Breiman (2001) introduced the random forests (RF) algorithm as an ensemble approach that can also be thought of as a form of nearest neighbour predictor. The random forest starts with a standard machine learning technique called “decision trees”. We provide a brief summary of this algorithm in this section.

2.1.1. Decision Trees

The decision trees algorithm is an approach that uses a set of binary rules to calculate a target class or value. Different from predictors like linear or polynomial regression where a single predictive formula is supposed to hold over the entire data space, decision trees aim to sub-divide the data into multiple partitions using a recursive method, and then fit simple models to each cell of the partition. Each decision tree has three levels:
  • Root nodes: entry points to a collection of data;
  • Inner nodes: a set of binary questions where each child node is available for every possible answer;
  • Leaf nodes: respond to the decision to take if reached.
For example, in order to predict a response or class Y from inputs X 1 , X 2 , . . . , X n , a binary tree is constructed based on the information from each input. At the internal nodes in the tree, a test to one of the inputs is run for a given criterion with logical outcomes: TRUE or FALSE. Depending on the outcome, a decision is drawn to the next sub-branches corresponding to the TRUE or FALSE response. Eventually, a final prediction outcome is obtained at the leaf node. This prediction aggregates or averages all of the training data points which reach that leaf. Figure 1 illustrates the binary tree concept.
Algorithm 1 describes how a decision tree can be constructed using CART from (Breiman et al. 1984). This algorithm is computationally simple and quick to fit the data. In addition, as it requires no parametric, no formal distributional assumptions are required. However, one of the main disadvantages of tree-based models is that they exhibit instability and high variance, i.e., a small change in the data can result in a very different series of split, or over-fitting. To overcome such a major issue, we used an alternative ensemble approach known as the random forests algorithm.
Algorithm 1: Classification And Regression Trees - CART algorithm for building decision trees.
   1: Let N be the root node with all available data.
   2: Find the feature F and threshold value T that split the samples assigned to N into subsets
      I T R U E and I F A L S E , to maximise the label purity within these subsets.
   3: Assign the pair (F, T) to N.
   4: If I ( s ) is too small to be split, attach a ‘child’ leaf node to L T R U E and L F A L S E to N and
     assign the leaves with the most present label in I T R U E and I F A L S E , respectively.
     If subset I ( s ) is large enough to be split, attach child nodes N T R U E and N F A L S E to N,
     and then assign I ( s ) to them, respectively.
   5: Repeat steps 2–4 for the new nodes N = N T R U E and N = N F A L S E until the new subsets
     can no longer be split.

2.1.2. Random Forests

A random forest can be considered to be a collection or ensemble of simple decision trees that are selected randomly. It belongs to the class of so-called bootstrap aggregation or bagging technique which aims to reduce the variance in an estimated prediction function. Particularly, a number of decision trees are constructed and random forests will either “vote” for the best decision (classification problems) or “average” the predicted values (regression problems). Here, each tree in the collection is formed by firstly selecting, at random, at each node, a small group of input coordinates (also called features or variables hereafter) to split on and secondly, by calculating the best split based on these features in the training set. The tree is grown using the CART algorithm to maximum size, without pruning. The use of random forests can lead to significant improvements in prediction accuracy (i.e., better ability to predict new data cases) in comparison with a single decision tree, as discussed in the previous section. Algorithm 2 from Breiman (2001) details how the random forests can be constructed.
For m = 1 , the algorithm uses random splitter selection. m can also be set to the total number of predictor variables which is known as Breiman’s bagger parameter (Breiman 2001). In this paper, we set m as equal to the maximum number of variables of interest used in the proposed model.
Applications of the random forests algorithm can be found in machine learning, pattern recognitions, bio-infomatics, and big data modelling. Recently, a number of financial literatures have applied the random forests algorithm to the forecasting of stock prices as well as in developing the investment strategies found in Theofilatos et al. (2012) and Qin et al. (2013). Here, we introduce an application of the random forests algorithm involving the forecasting of the realised volatility.
Algorithm 2: Random forests
   1: Draw a number of bootstrap samples from the original data ( n t r e e ) to be grown.
   2: Sample N cases at random with replacement to create a subset of the data. The subset is
     then split into in-bag and out-of-bag samples at a selected ratio (i.e., 7:3).
   3: At each node, for a preselected number m, m predictor variables ( m t r y ) are chosen at
     random from all the predictor variables.
   4: The predictor variable that provides the best split, according to some objective function,
     is used to build a binary split on that node.
   5: At the next node, choose another m variables at random from all predictor variables.
   6: Repeat 3–5 until all nodes are grown.

2.2. Volatility Measures

Volatility, often measured by the standard deviation or variance of returns from a financial security or market index, is an important component of asset allocation, risk management, and pricing derivatives. In this section, we discuss the two measures of volatility known as the realised volatility and the purified implied volatility.

2.2.1. Realised Volatility

The realised volatility measure was proposed by Andersen et al. (2003) in 2003 based on the use of high frequency data.
Let S ( t ) represent the asset price which is observed at equally-spaced discrete points within a given time interval [ t δ , t ] , where 0 t δ t T , s ( t ) = log S ( t ) and r ( t , δ ) = s ( t ) s ( t δ ) . We assume that S ( t ) is represented by the following Ito equation
d s ( t ) = μ ( t ) d t + σ ( t ) d W ( t ) , 0 t T ,
where W ( t ) is a standard Brownian process, μ ( t ) and σ ( t ) are predictable processes with σ ( t ) being the standard deviation of d s ( t ) and independent of d W ( t ) . Therefore, the processes μ ( t ) and σ ( t ) represent the instantaneous conditional mean and volatility of the return. Hence,
r ( t , δ ) = s ( t ) s ( t δ ) = t δ t μ ( τ ) d τ + t δ t σ ( τ ) W ( t ) .
Following this result, let us assume that the time interval [ t δ , t ] is observed evenly at Δ steps in discrete time. The realised volatility (RV) of S ( t ) can be estimated by
R V t δ , t = j = 0 M 1 r t j Δ 2 ,
where r t j Δ = s ( t j Δ ) s ( t ( j + 1 ) Δ ) , Δ = 1 M , and M is the number of observations within that time interval.

2.2.2. The Purified Implied Volatility

The implied volatility is often known as the ex-ante measure of volatility, and is derived from either the Black–Scholes’ options pricing model from Black and Scholes (1973) (model-based estimation) or from theoptions market price formula by Carr and Wu (2006) (model-free estimation). Such measures depend on several inputs, such as time-to-expiration, stock price, exercise price, risk-free-rate-of-interest, and observed call/put price. Hence, the implied volatility will vary in accordance with the fluctuations of these inputs. In order to reduce the impact of the stock price movements, the purified implied volatility (PV) was introduced in Luong and Dokuchaev (2014). The purified implied volatility is derived from the Black–Scholes options pricing model, where the market option prices are replaced by artificial option prices that reduce the impact of the market price from the observed option prices. The paper also shows that the purified implied volatility does contain information about the traditional volatility measure (i.e., the standard deviation of the low-frequency daily returns). In this paper, we include the purified implied volatility as an extended variable of the HAR model.

2.3. Models for Volatility

2.3.1. Heterogeneous Autoregressive Model for Realised Volatility

Corsi (2003) (see also Corsi and Reno (2009)) proposed the heterogeneous autoregressive model for realised volatility as an extension of the Heterogenous ARCH (HARCH) class of models analysed by Muller et al. (1997), which recognizes the presence of heterogeneity in the traders. The idea stems from the “Fractal Market Hypothesis” (Peters 1994), “Interacting Agent View” (Lux and Marchesi 1999) and “Mixture of Distribution” hypotheses (Andersen and Bollerslev 1997) in the realised volatility process.
It is noted that the definition of realised volatility involves two time parameters: (1) the intraday return interval Δ and (2) the aggregation period one day. For the heterogeneous autoregressive model of realised volatility from Corsi (2003), it is considered that the latent realised volatility is viewed over time horizons longer than one day. The n days historical realised volatility at time t (i.e., R V t n , t ) is estimated as an average of the daily realised volatility between ( t n ) and t. The daily HAR is expressed by
R V t , t + 1 = β 0 + β D R V t 1 , t + β W R V t 5 , t + β M R V t 22 , t + ε t , t + 1 ,
where W = 5 days, M = 22 days, and R V t 5 , t , R V t 22 , t present the average realised volatility of the last 5 days and 22 days, respectively. The HAR model can be extended by including the jump component proposed by Barndorff-Nielsen and Shephard (2001) such that
t δ τ t J 2 ( τ ) m a x { R V ( t δ , t ) B V ( t δ , t ) , 0 } ,
where B V is the realised bi-power variation Barndorff-Nielsen and Shephard (2004). Hence, the general form of the model is
R V t , t + k = β 0 + β D R V t 1 , t + β W R V t 5 , t + β M R V t 22 , t + β J J t k , t + ε t , t + k .
Most recently, the heterogeneous structure was extended with the inclusion of the leverage effect observed by Black (1976)—the asymmetry in the relationship between returns and volatility noticed by Corsi and Reno (2009). For a given period of time, the leverage level at time t is measured as the average aggregated negative and positive returns during that period where
r t k , t + = 1 M j = 0 M 1 r t j Δ , t I { r t k , t , , r t , t 0 } ; r t k , t = 1 M j = 0 M 1 r t j Δ , t I { r t k , t , , r t , t 0 } ,
with M being the number of observations between t k , t, and Δ is the time step. Therefore, one would include the leverage effect as a predictor for the realised volatility in the next k days as follows:
R V t , t + k = β 0 + β D R V t 1 , t + β W R V t 5 , t + β M R V t 22 , t + β J J t k , t + α P r t k , t + + α N r t k , t + ε t , t + k .
Often, the coefficients β 0 , β D , β W , β M , β J , α P , α N are obtained by using the Ordinary-Least-Squares (OLS) estimation for linear regression models.

2.4. The Modified HAR Model for Realised Volatility and Forecasting the Direction

We define two states of the world outcome on the volatility direction as “UP” and “DOWN”. Let D δ be the direction of the realised volatility observed at the time δ , such that
D δ = U P if R V δ R V δ 1 > 1 , D O W N if R V δ R V δ 1 < 1 .
In order to forecast the direction of realised volatility, a set of predictors (or technical indicators) is used which are derived from the historical price movement of the underlying asset and its realised volatility. Since all available historical information is used, D δ does not follow a Markov chain. We investigated a number of indicators and through the feature selection process (using variable importance ranking from the random forest algorithm), we found that the following indicators were best for forecasting the realised volatility’s direction.
  • The Average True Range (ATR): The ATR is an indicator that measures volatility by using the high–low range of the daily prices. ATR is based on n-periods and can be calculated on an intraday, daily, weekly, or monthly basis. It is noted that ATR is often used as a proxy for volatility. To estimate A T R t , we are required to compute the “true range” (TR) such that
    T R δ = m a x { H δ L δ , | H δ C δ 1 | , | L C δ 1 | } ,
    where H δ , L δ , C δ 1 are the current highest return, the current lowest return, and the previous last return of a selected period, respectively, with absolute values to ensure T R δ is always positive. Hence, the average true range within n-days is
    A T R δ n , δ = ( n 1 ) A T R δ n 1 , δ + T R δ n .
  • Close Relative To Daily Range (CRTDR): The location of the last return within the day’s range is a powerful predictor of next-returns. Here, CRTDR is estimated by
    C R T D R δ = C δ L δ H δ L δ ,
    where, H δ , L δ and C δ are the high, low, and close returns at time δ for a selected time period using high frequency returns.
  • Exponential Moving Average of realised volatility (EMARV): Exponential moving averages reduce the lag effect in time-series by applying more weight to recent prices. The weighting applied to the most recent price depends on the number of periods (n) in the moving average and the weighting multiplier ( κ ). The formula for EMARV of n-periods is as follows:
    E M A R V δ n , δ = R V δ κ × E M A R V δ n 1 , δ + E M A R V δ n 1 , δ .
  • Moving average convergence/divergence oscillator (MACD) measure of realised volatility: The MACD is one of the simplest and most effective momentum indicators. It turns two moving averages into a momentum oscillator by subtracting the longer moving average (m-days) from the shorter moving average (n-days). The MACD fluctuates above and below the zero line as the moving averages converge, cross, and diverge. We estimate the MACD for realised volatility as
    M A C D R V δ , m , n = E M A R V δ , m E M A R V δ , n .
  • Relative Strength Index for realised volatility (RSIRV): This is also a momentum oscillator that measures the speed and change of volatility movements. We define RSIRV as
    R S I R V δ n , δ = 1 1 1 + R V ¯ δ n , δ + R V ¯ δ n , δ ,
    where R V ¯ δ n , δ + is the average increase in volatility and R V ¯ δ n , δ is the average decrease in volatility within n-days.
The steps that we take to forecast the volatility direction are listed in Algorithm 3.
Algorithm 3: Forecasting the direction of realised volatility
   1: Obtain the direction of the realised volatility.
   2: Compute the above technical indicators for each observation.
   3: Split the data into a training set and a testing set.
   4: Apply the random forests algorithm to the training set to develop the pattern solution of
     the realised volatility using the above indicators.
   5: Use the solution from Step 4 to predict the direction of the testing set.
Figure 2 demonstrates a possible decision tree that was built for forecasting the direction of realised volatility D δ using the above steps. In this example, node #4 can be reached when RSI-RV(5) 0 . 5 and TR(10) < 0 . 0084 , with 19% of the in-sample data falling into this category and 91% of these observations being classified as “DOWN”. Likewise, node #27 is reached when RSI-RV(5) 0 . 5 , r + 0 . 014 , and 0 . 0049 T R ( 10 ) < 0 . 0072 . In random forests, we can construct similar trees but with different structures to classify the direction of the realised volatility based on the information from other predictors.
Let D ^ t , t + k denote the predicted direction of the realised volatility at time t + k using Algorithm 3.

2.5. Forecasting the Realised Volatility—The Proposed Model

To forecast the realised volatility, we consider the heterogeneous autoregression model as discussed in Section 2.3.1. We further include the purified implied volatility and the predicted direction of the future volatility as new predictive variables. Particularly, the model (7) is extended to
R V t , t + k = β 0 + β D R V t 1 , t + β W R V t 5 , t + β M R V t 22 , t + β J J t k , t + α 1 r t k , t + + α 2 r t k , t + γ P V t k , t + 22 + κ D ^ t , t + k + ε t , t + k .
We also consider the logarithmic form of this model, as the logarithmic of the realised volatility is often believed to be a smoother process. Thus, we model log R V as
log R V t , t + k = β 0 + β D log R V t 1 , t + β W log R V t 5 , t + β M log R V t 22 , t + β J log ( 1 + J t k , t ) + α 1 log | r t 1 , t + | + α 2 log | r t 1 , t | + γ l o g ( P V t k , t + 22 ) + κ D ^ t , t + k + ε t , t + k ,
where k = { 1 , 5 , 22 } for 1-day, 5-day, and 22-day time horizons. We use log ( 1 + J t k , t ) instead of log ( J t k , t ) to allow for the cases where J t k , t = 0 , and the leverage effect is measured by log | r t 1 , t * | to allow for the average aggregated negative returns.
The parameters in models (15) and (16) (HAR-JL-PV-D) are fitted using the random forests regression algorithm. It is important to note that for the in-sample data, we replace D ^ t , t + k with the actual direction D t , t + k to measure the impact of the direction variable on the forecasting of the realised volatility.

3. The results

3.1. Measuring Errors

Since the paper focuses on forecasting both the realised volatility’s direction and its magnitude, we used the following measures to compare each model.

3.1.1. Classification Problem

In forecasting the direction of the realised volatility, the classification problem consists of only two stages. We measured the accuracy of the forecast as follows.
Let us define the following terms
  • True positive (TP): The number of days that are observed with “DOWN” signals that were correctly predicted.
  • False positive (FP): The number of days that are observed with “DOWN” signals that were predicted to have “UP” signals.
  • False negative (FN): The number of days that are observed with “UP” signals that were predicted to have “DOWN” signals.
  • True negative (TN): The number of days that are observed with “UP” signals that were correctly predicted.
  • Accuracy: the proportion of the total number of correct predictions
    Accuracy = T P + T N T P + F P + T N + F N .

3.1.2. Regression Problem

We split our data into two subsets: the training (in-sample) data and the test (out-of-sample) data. Since we used the random forests algorithm, we measured the accuracy of the model proposed method for training data and test data separately.
Measuring Error for Training Data
For the random forests algorithm, an estimate of the error rate can be obtained based on the training as follows:
  • For each bootstrap, predict the out-of-bag values using the tree grown within the bootstrap sample.
  • Aggregate the Out-of-bag (OOB) predictions and calculate the mean square error rate by
    M S E O O B = 1 m t = 1 n R V t R V t ¯ O O B 2
    where m is the number of observations in the OOB data (i.e., m < N ) and R V t ¯ O O B is the average of the OOB predictions for the t t h observation.
  • Estimate the percentage variance explained as a measure of goodness of fit by
    1 M S E O O B σ R V 2
    where σ R V 2 is the variance in the OOB sample.
Measuring Error for Test Data
Let R V t denote the t t h observation, R V t ^ denote its forecast, and k be the number of data points observed in the selected period. The error measures include:
  • The mean absolute error
    M A E = 1 k t = 1 k | R V t R V t ^ | .
  • The mean absolute percentage error
    M A P E = 1 k t = 1 k | R V t R V t ^ | R V t .
  • The root mean square error
    R M S E = 1 k t = 1 k ( R V t R V t ^ ) 2 .
  • The root mean square percentage error
    R M S P E = 1 k t = 1 k R V t R V t ^ R V t 2 .

3.2. Empirical Results

3.2.1. Data Description

We demonstrate the proposed model by analysing the S&P ASX 200 Index high frequency returns data and their realised volatility. Our dataset was collected from Reuters (2015) for the period 1 January 2008 to 31 December 2014. The Australian Stock Exchange is open between 10:00 a.m. to 4:00 p.m. We collected the tick-by-tick S&P 200 levels; hence, the prices were not recorded at equispaced time points. We used the previous tick aggregation method to force the observed prices into an equispaced grid, i.e., by taking the last price realized before each grid point and obtaining the 15-s frequency data. The daily realised volatility (with 1762 observations) was then estimated using these 15-s prices. The data from 2008 to 2013 were used for training purposes and 2014 data were used for validation purposes. This was to account for over-fitting and bias effects of the time-series data with the random forests algorithm.
The experiment was performed in a cloud-based Linux environment that stored seven years worth of high frequency data. The data aggregation was processed on a 2.5 GHz Intel Xeon Platinum 8175 instance with 32 GB of RAM. The function rxDForest from RevoScaleR package in R was used for the random forests algorithm. This allowed us to effectively handle the large dataset and to execute the computation in parallel. A fixed value of random seed was also set to ensure that the results between each run were comparable and reproducible.

3.2.2. The Results

Below we report the results of our experiment which were the best results obtained via cross-validation and hyper parameter tuning of the rxDForest function.
Table 1 provides a summary of the 15-s realised volatility measured using different time-windows. It was observed that both non-logarithmic and logarithmic series are skewed and non-normal. This suggests that the Ordinary Least Squares estimation approach is not applicable for our dataset. As a result, we compared the maximum likelihood estimation (MLE) with the random forests algorithm instead. In terms of correlation coefficients between the series, we observed that the computed realised volatility exhibits the long memory effect. Further, the purified implied volatility was shown to be strongly correlated with the realised volatility measures, which indicates that PV can be a useful predictor of realised volatility.
Table 2 compares the in-sample forecast results of the proposed model. For the selected time horizons, the inclusion of purified implied volatility improved the forecast accuracy against the original HAR-JL model (based on the RMSE measure and % OOB variance explained), where the logarithmic RV series performed better than the non-logarithmic RV series. It is also observed that the direction indicator further improved the forecast results; this was most significant for the 1-day forecast (with 79.28% and 80.55% variance explained for RV and log RV in comparison with 57.81% and 61.66% from the HAR-JL model respectively). For the 5-day and 22-day in-sample forecasts, we observed slight improvements in RMSE with a better goodness of fit.
In forecasting the direction of the out-sample realised volatility, we obtained the accuracy of the hit-rate at 80.05%, 72.85%, and 65.22% for 1-day, 5-day and 22-day forecasts respectively. This suggests our classification model can perform better for short-term forecasts than long-term forecasts. This can be explained by the fact that long-term forecasts require not only technical indicators but also fundamental indicators and long-term expectations from the market.
Table 3 provides a summary of the forecast errors for the out-sample data. In general, the out-of-sample performances of the proposed model are in line with the in-sample performances. The MAPE and RMSPE for the 1-day forecast of the RV from the HAR-JL-PV-D reduced by 8% and 11%, respectively, while the MAPE and RMSPE for the 5-day and 22-day forecasts reduced by 3% and 5%. When comparing the HAR-JL-PV model against the HAR-JL-D model, it can be seen that the forecast errors were smaller for the HAR-JL-PV model for these time horizons. This was anticipated as we found that the forecast in the long-term direction was less accurate for the 5-day and 22-day forecasts. However, the HAR-JL-D model still performed better than the HAR-JL alone, and the HAR-JL-PV-D model provided the best fit.
We present in Figure 3 the actual S&P200’s realised volatility measured under different time horizons from 1 January 2014 to 31 December 2014, with the predicted realised volatility using the maximum likelihood estimation for the HAR-JL model (left panel) and using the random forests estimation for the HAR-JL-PV-D model (right panel). Such separation in the time frame was implemented to measure the realised values of our metrics, in order to avoid the over-fitting effect that can possibly be caused by the random forests algorithm.

4. Discussion

Forecasting problems for financial time series are challenging since these series have a significant noise component. Currently, there is no consensus on the possibility of forecasting for asset prices using a technical analysis or a mathematical algorithm. The forecasting of parameters of stochastic models for financial time series, including volatility, is also challenging. Moreover, even statistical inference for parameters of financial time series is usually difficult. An additional difficulty is that these parameters are not directly observable; they are defined by the underlying model and by many other factors. For example, it appears that the volatility depends on the sampling frequency and on the delay parameter in the model equation see, e.g., Luong and Dokuchaev (2016). In addition, there is no a unique comprehensive model for stock price evolution; for example, there are many models with stochastic equations for volatility, with jumps, with fractional noise, etc. Respectively, even a modest improvement in forecasting for the parameters of financial time series would be beneficial for the practitioners.
Our paper explored the HAR (Corsi and Reno 2009) model with the main focus being to extend this model family via two new features, the purified volatility and the forecast volatility movement, and the implementation of this machine learning algorithm to improve the forecast of realised volatility.
By utilising the availability of high frequency data, we showed that the direction of the realised volatility can be forecast with the random forests algorithm by using the proposed technical indicators, with an accuracy of above 80% for the selected time series. However, this accuracy could be further improved if we could integrate fundamental indicators such as financial news.
The errors in forecasting the realised volatility with our proposed features also showed further improvement on top of the existing HAR-JL model. Particularly, this was done through the addition of information derived from the purified volatility and the predicted direction of the volatility. We believe that the predictions of realised volatility would further be improved by using other tree-based algorithms such as Extreme Gradient Boosting (XGBoost) or Bayesian additive regression trees (BART). However, we leave this for future study.

5. Conclusions

This paper introduces an application of the random forests algorithm for forecasting the realised volatility. For the classification problem, our study showed that by using the selected feature choices, it was able to forecast the direction of the realised volatility. For the regression problem with its non-linear structure, the technique was able to reduce the forecasting error rate from volatility clustering systematically under different time horizons. The empirical results of S&P 200 show that the existing HAR model framework was improved by including the purified implied volatility and applying this machine learning technique. We suggest that further investigation of the roles of the purified implied volatility and random forests algorithm in other high frequency models of volatility should be done.

Author Contributions

C.L. conceived, planned, and carried out the experiment. N.D. helped supervise the project. C.L. and N.D. provided critical feedback and helped shape the research, analysis and the manuscript.

Funding

This work was supported by ARC grant of Australia DP120100928.

Conflicts of Interest

The authors declare no conflicts of interest.

References

  1. Andersen, Torben G., and Tim Bollerslev. 1997. Heterogeneous information arrivals and return volatility dynamics: Uncovering the long run in high frequency data. Journal of Finance 52: 975–1005. [Google Scholar] [CrossRef]
  2. Andersen, Torben G., Tim Bollerslev, Francis X. Diebold, and Paul Labys. 2003. Modeling and forecasting realized volatility. Econometrica 71: 529–626. [Google Scholar] [CrossRef]
  3. Barndorff-Nielsen, Ole E., and Neil Shephard. 2001. Econometric Analysis of Realised Volatility and its Use in Estimating Stochastic Volatility Models. Journal of the Royal Statistical Society 64: 253–80. [Google Scholar] [CrossRef]
  4. Barndorff-Nielsen, Ole E., and Neil Shephard. 2004. Power and bipower variation with stochastic volatility and jumps. Journal of Financial Econometrics 2: 1–37. [Google Scholar] [CrossRef]
  5. Black, Fischer, and Myron Scholes. 1973. The Pricing of Options and Corporate Liabilities. Journal of Political Economy 81: 637–54. [Google Scholar] [CrossRef]
  6. Black, Fischer. 1976. The pricing of commodity contracts. Journal of Financial Economics 3: 167–79. [Google Scholar] [CrossRef]
  7. Bollerslev, Tim. 1986. Generalized Auto Regressive Conditional Heteroskedasticity. Journal of Econometrics 31: 307–27. [Google Scholar] [CrossRef]
  8. Breiman, Leo, J. H. Friedman, R. A. Olshen, and C. J. Stone. 1984. Classification and Regression Trees. Monterey: Wadsworth and Brooks. [Google Scholar]
  9. Breiman, Leo. 2001. Random Forests. Machine Learning 45: 5–32. [Google Scholar] [CrossRef] [Green Version]
  10. Carr, Peter, and Liuren Wu. 2006. A tale of two indices. Journal of Derivatives 3: 13–29. [Google Scholar] [CrossRef]
  11. Corsi, Fulvio, and Roberto Reno. 2009. HAR Volatility Modelling With Heterogeneous Leverage and Jumps. Available online: https://web.stanford.edu/group/SITE/archive/SITE_2009/segment_1/s1_papers/corsi.pdf (accessed on 10 October 2018).
  12. Corsi, Fulvio. 2003. A Simple Approximate Long-Memory Model of Realized Volatility. Journal of Financial Econometrics 7: 174–96. [Google Scholar] [CrossRef]
  13. De Stefani, Jacopo, Olivier Caelen, Dalila Hattab, and Gianluca Bontempi. 2017. Machine Learning for Multi-step Ahead Forecasting of Volatility Proxies. Available online: https://pdfs.semanticscholar.org/39cf/3536e780ff195d400902076e1b3e7b2e638d.pdf (accessed on 20 September 2015).
  14. Dokuchaev, Nikolai. 2014. Volatility estimation from short time series of stock prices. Journal of Nonparametric Statistics 26: 373–84. [Google Scholar] [CrossRef]
  15. Engle, Robert F. 1982. Autoregressive conditional heteroskedasticity with estimates of variance of UK inflation. Econometrica 50: 987–1008. [Google Scholar] [CrossRef]
  16. Engle, Robert F. 1990. Discussion: Stock market volatility and the crash of 87. Review of Financial Studies 3: 103–6. [Google Scholar] [CrossRef]
  17. Glosten, Lawrence R., Ravi Jagannathan, and David E. Runkle. 1993. On the relationship between the expected value and the volatility of the nominal excess return on stocks. Journal of Finance 46: 1779–801. [Google Scholar] [CrossRef]
  18. Heston, Steven L. 1993. A closed-form solution for options with stochastic volatility with applications to bond and currency options. The Review of Financial Studies 6: 327–43. [Google Scholar] [CrossRef]
  19. Khan, Md Ashraful Islam. 2011. Financial Volatility Forecasting by Nonlinear Support Vector Machine Heterogeneous Autoregressive Model: Evidence from Nikkei 225 Stock Index. International Journal of Economics and Finance 3: 138–50. [Google Scholar] [CrossRef]
  20. Luong, Chuong, and Nikolai Dokuchaev. 2014. Analysis of market volatility via a dynamically purified option price process. Annals of Financial Economics 9: 1450006. [Google Scholar] [CrossRef]
  21. Luong, Chuong, and Nikolai Dokuchaev. 2016. Modelling dependency of volatility on sampling frequency via delay equations. Annals of Financial Economics 11: 1650007. [Google Scholar] [CrossRef]
  22. Lux, Thomas, and Michele Marchesi. 1999. Scaling and criticality in a stochastic multi-agent model of financial market. Nature 397: 498–500. [Google Scholar] [CrossRef]
  23. Müller, Ulrich A., Michel M. Dacorogna, Rakhal D. Davé, Richard B. Olsen, Olivier V. Pictet, and Jacob E. Von Weizsäcker. 1997. Volatilities of different time resolutions: Analyzing the dynamics of market components. Journal of Empirical Finance 4: 213–39. [Google Scholar] [CrossRef]
  24. Nelson, Daniel B. 1991. Conditional Heteroskedasticity in Asset Returns: A New Approach. Econometrica 59: 347–70. [Google Scholar] [CrossRef]
  25. Peters, Edgar. 1994. Fractal Market Analysis. In A Wiley Finance Edition. New York: John Wiley & Sons. [Google Scholar]
  26. Qin, Qin, Qing-Guo Wang, Jin Li, and Shuzhi Sam Ge. 2013. Linear and Nonlinear Trading Models with Gradient Boosted Random Forests and Application to Singapore Stock Market. Journal of Intelligent Learning Systems and Applications 5: 1–10. [Google Scholar] [CrossRef]
  27. Reuters, Thomson. 2015. Thomson Reuters Tick History. Available online: http://www.sirca.org.au/ (accessed on 20 September 2015).
  28. Theofilatos, Konstantinos, Spiros Likothanassis, and Andreas Karathanasopoulos. 2012. Modeling and Trading the EUR/USD Exchange Rate Using Machine Learning Techniques. ETASR—Engineering, Technology & Applied Science Research 2: 269–72. [Google Scholar]
  29. Whaley, Robert E. 2000. The investor fear gauge. The Journal of Portfolio Management 6: 12–17. [Google Scholar] [CrossRef]
  30. Zakoian, Jean-Michel. 1994. Threshold Heteroscedastic Models. Journal of Economic Dynamics and Control 18: 931–55. [Google Scholar] [CrossRef]
Figure 1. A binary tree—starting from the root node, multiple criteria are selected based on the information from each input. A decision is drawn at a particular leaf, i.e., Decision D, if all criteria along its path “==” are satisfied.
Figure 1. A binary tree—starting from the root node, multiple criteria are selected based on the information from each input. A decision is drawn at a particular leaf, i.e., Decision D, if all criteria along its path “==” are satisfied.
Jrfm 11 00061 g001
Figure 2. A possible decision tree for classifying the daily realised volatility direction using the technical indicators from the previous day.
Figure 2. A possible decision tree for classifying the daily realised volatility direction using the technical indicators from the previous day.
Jrfm 11 00061 g002
Figure 3. Predicted vs. actual realised volatility using the HAR-JL-PV-D model with the maximum likelihood estimation and random forests estimation.
Figure 3. Predicted vs. actual realised volatility using the HAR-JL-PV-D model with the maximum likelihood estimation and random forests estimation.
Jrfm 11 00061 g003
Table 1. Statistical summary of S&P/ASX 200’s 15-second realised volatility at different time horizons from 1 January 2008 to 31 December 2014 and their correlations matrix.
Table 1. Statistical summary of S&P/ASX 200’s 15-second realised volatility at different time horizons from 1 January 2008 to 31 December 2014 and their correlations matrix.
SeriesMeanStd. Dev.Skew.Kurt.Min.Max. RV t 1 , t RV t 5 , t RV t 22 , t PV
R V t 1 , t 0.13350.08482.49578.95300.03280.781110.84410.75230.7757
R V t 5 , t 0.13350.07212.04815.47480.04840.54530.844110.90420.8919
R V t 22 , t 0.13310.06641.83043.93110.05930.42280.75230.904210.9180
PV0.16140.07051.51812.84610.06980.50040.77570.89190.91801
SeriesMeanStd. DevSkew.Kurt.Min.Max. log RV t 1 , t log RV t 5 , t log RV t 22 , t log PV
log R V t 1 , t −2.15880.51390.56780.2336−3.4184−0.247110.85480.77390.7936
log R V t 5 , t −2.12440.44990.66190.0960−3.0274−0.60640.854810.91240.8972
log R V t 22 , t −2.1130.42130.7156−0.0407−2.8248−0.86080.77390.912410.9017
log P V −1.90440.38930.5190−0.3229−2.6618−0.69230.79360.89720.90171
Table 2. Forecasting error of the realised volatility for the in-sample data from 1 January 2008 to 31 December 2013.
Table 2. Forecasting error of the realised volatility for the in-sample data from 1 January 2008 to 31 December 2013.
1-Day5-Day22-Day
HAR-JLHAR-JL-PVHAR-JL-DHAR-JL-PV-DHAR-JLHAR-JL-PVHAR-JL-DHAR-JL-PV-DHAR-JLHAR-JL-PVHAR-JL-DHAR-JL-PV-D
RVRMSE0.00310.00290.00180.00180.0020.00110.00100.00100.00110.00100.00090.0001
% OOB Var57.8159.6174.6875.5879.2880.2881.1381.8174.4776.4478.0979.44
log RVRMSE0.09960.09570.05090.05020.03780.03360.03260.02950.03830.03230.03390.0287
% OOB Var61.6663.1280.3980.6580.5582.7083.2584.8377.4881.9780.0583.12
Table 3. Forecasing error of the realised volatility for the out-sample data from 1 January 2014 to 31 December 2014.
Table 3. Forecasing error of the realised volatility for the out-sample data from 1 January 2014 to 31 December 2014.
1-Day5-Day22-Day
HAR-JLHAR-JL-PVHAR-JL-DHAR-JL-PV-DHAR-JLHAR-JL-PVHAR-JL-DHAR-JL-PV-DHAR-JLHAR-JL-PVHAR-JL-DHAR-JL-PV-D
RVMAE0.02120.02050.01760.01710.01470.01350.01370.01270.01840.01420.0170.0137
MAPE0.27150.25160.20420.19740.18140.15730.16700.15000.22450.16300.20940.1576
RMSE0.02850.02770.02470.02350.01920.01820.01800.01680.02230.01820.02090.0176
RMSPE0.36100.32450.27090.25680.23520.20250.21810.19260.27450.20460.26020.1973
log RVMAE0.02060.02010.01700.01650.01430.01350.01300.01290.01700.01380.01560.0135
MAPE0.25250.23310.19470.18780.17400.15530.15740.14810.20580.15760.18810.1532
RMSE0.02790.02800.02390.02330.01850.01850.01750.01750.02060.01770.01910.0174
RMSPE0.32500.29290.25730.24540.22300.19800.21160.19130.24990.19580.23100.1912
Note: as the random forests algorithm requires a random selection process, for consistent comparison across models, we reset the random seed to a specific value before applying the algorithm to each of the above models.

Share and Cite

MDPI and ACS Style

Luong, C.; Dokuchaev, N. Forecasting of Realised Volatility with the Random Forests Algorithm. J. Risk Financial Manag. 2018, 11, 61. https://doi.org/10.3390/jrfm11040061

AMA Style

Luong C, Dokuchaev N. Forecasting of Realised Volatility with the Random Forests Algorithm. Journal of Risk and Financial Management. 2018; 11(4):61. https://doi.org/10.3390/jrfm11040061

Chicago/Turabian Style

Luong, Chuong, and Nikolai Dokuchaev. 2018. "Forecasting of Realised Volatility with the Random Forests Algorithm" Journal of Risk and Financial Management 11, no. 4: 61. https://doi.org/10.3390/jrfm11040061

Article Metrics

Back to TopTop