NFCP_MLE {NFCP} | R Documentation |
N-factor model parameter estimation through the Kalman filter and maximum likelihood estimation
Description
The NFCP_MLE
function performs parameter estimation of commodity pricing models under the N-factor framework of Cortazar and Naranjo (2006). It uses term structure futures data and estimates unknown parameters through maximum likelihood estimation.
NFCP_MLE
allows for missing observations, a variable number of state variables, deterministic seasonality and a variable number of measurement error terms.
Usage
NFCP_MLE(
log_futures,
dt,
futures_TTM,
N_factors,
N_season = 0,
N_ME = 1,
ME_TTM = NULL,
GBM = TRUE,
estimate_initial_state = FALSE,
Domains = NULL,
cluster = FALSE,
...
)
Arguments
log_futures |
|
dt |
|
futures_TTM |
|
N_factors |
|
N_season |
|
N_ME |
|
ME_TTM |
|
GBM |
|
estimate_initial_state |
|
Domains |
|
cluster |
|
... |
additional arguments to be passed into the |
Details
The NFCP_MLE
function facilitates parameter estimation of commodity pricing models under the N-factor framework through the Kalman filter and maximum likelihood estimation. NFCP_MLE
uses genetic algorithms through the genoud
function of the rgenoud
package to numerically optimize the log-likelihood score returned from the NFCP_Kalman_filter
function.
Parameter estimation of commodity pricing models can involve a large number of observations, state variables and unknown parameters. It also features an objective log-likelihood function that is nonlinear and
discontinuous with respect to model parameters. NFCP_MLE
is designed to perform parameter estimation as efficiently as possible, maximizing the likelihood of attaining a global optimum.
Arguments passed to the genoud
function can greatly influence estimated parameters as well as computation time and must be considered when performing parameter estimation. All arguments of the genoud
function
may be passed through the NFCP_MLE
function.
When grad
is not specified, the grad
function from the numDeriv
package is called to
approximate the gradient within the genoud
optimization algorithm through Richardsons extrapolation.
Richardsons extrapolation is regarded for its ability to improve the approximation of estimation methods, which may improve the likelihood of obtained a global maxmimum estimate of the log-likelihood.
The population size can highly influence parameter estimates at the expense of increased computation time. For commodity pricing models with a large number of unknown parameters, large population sizes may be necessary to maximize the estimation process.
NFCP_MLE
by default performs boundary constrained optimization of log-likelihood scores and does not allow does not allow for out-of-bounds evaluations within
the genoud
optimization process, preventing candidates from straying beyond the bounds provided by argument Domains
.
When Domains
is not specified, the default bounds specified by the NFCP_domains
function are used. The size of the search domains of unknown parameters can highly
influence the computation time of the NFCP_MLE
function, however setting domains that are too restrictive may result in estimated parameters returned at the upper or lower bounds. Custom search domains can be used
through the NFCP_domains
function and subsequently the Domains
argument of this function.
Finally, the maximum likelihood estimation process of parameters provides no in-built guarantee that the estimated parameters of commodity models are financially sensible results. When the commodity model has been over-parameterized (i.e., the number of factors N specified is too high) or the optimization algorithm has failed to attain a global maximum likelihood estimate, estimated parameters may be irrational.
Evidence of irrational parameter estimates include correlation coefficients that are extremely large (e.g., > 0.95 or < -0.95), risk-premiums or drift terms that are unrealistic, filtered state variables that are unrealistic and extremely large/small mean-reverting terms with associated large standard errors.
Irrational parameter estimates may indicate that the number of stochastic factors (i.e., N_factors
) of the model or number of seasonal factors (i.e., N_season
) are too high.
The N-factor model The N-factor framework was first presented in the work of Cortazar and Naranjo (2006, equations 1-3). It is a risk-premium class of commodity pricing model, in which futures prices are given by discounted expected future spot prices, where these spot prices are discounted at a given level of risk-premium, known as the cost-of-carry.
The N-factor framework describes the spot price process of a commodity as the correlated sum of \(N\) state variables \(x_t\). The 'NFCP' package also allows for a deterministic, cyclical seasonal function \(season(t)\) to be considered.
When GBM = TRUE
:
\[log(S_{t}) = season(t) + \sum_{i=1}^N x_{i,t}\]
When GBM = FALSE
:
\[log(S_{t}) = E + season(t) + \sum_{i=1}^N x_{i,t}\]
Where GBM
determines whether the first factor follows a Brownian Motion or Ornstein-Uhlenbeck process to induce a unit root in the spot price process.
When GBM = TRUE
, the first factor corresponds to the spot price, and additional N-1 factors model the cost-of-carry.
When GBM = FALSE
, the commodity model assumes that there is a long-term equilibrium the commodity price will tend towards over time, with model volatility a decreasing function of time. This is not the standard approach made in the commodity pricing literature (Cortazar and Naranjo, 2006).
State variables are thus assumed to follow the following processes:
When GBM = TRUE
:
\[dx_{1,t} = \mu^*dt + \sigma_{1} dw_{1}t\]
When GBM = FALSE
:
\[dx_{1,t} = - (\lambda_{1} + \kappa_{1}x_{1,t})dt + \sigma_{1} dw_{1}t\]
And: \[dx_{i,t} =_{i\neq 1} - (\lambda_{i} + \kappa_{i}x_{i,t})dt + \sigma_{i} dw_{i}t\]
where: \[E(w_{i})E(w_{j}) = \rho_{i,j}\]
Additionally, the deterministic seasonal function (if specified) is given by:
\[season(t) = \sum_{i=1} ( season_{i,1} cos(2i\pi) + season_{i,2} sin(2i\pi)\]The addition of deterministic, cyclical seasonality as a function of trigonometric variables was first suggested by Hannan, Terrell, and Tuckwell (1970) and first applied to model commodities by Sørensen (2002).
The following constant parameters are defined as:
var
\(\mu\): long-term growth rate of the Brownian Motion process.
var
\(E\): Constant equilibrium level.
var
\(\mu^*=\mu-\lambda_1\): Long-term risk-neutral growth rate
var
\(\lambda_{i}\): Risk premium of state variable \(i\).
var
\(\kappa_{i}\): Reversion rate of state variable \(i\).
var
\(\sigma_{i}\): Instantaneous volatility of state variable \(i\).
var
\(\rho_{i,j} \in [-1,1]\): Instantaneous correlation between state variables \(i\) and \(j\).
Including additional factors within the spot-price process allow for additional flexibility (and possibly fit) to the term structure of a commodity. The N-factor model nests simpler models within its framework, allowing for the fit of different N-factor models (applied to the same term structure data), represented by the log-likelihood, to be directly compared with statistical testing possible through a chi-squared test. The AIC or BIC can also be used to compare models.
Disturbances - Measurement Error:
The Kalman filtering algorithm assumes a given measure of measurement error or disturbance in the measurement equation (ie. matrix \(H\)). Measurement errors can be interpreted as error in the model's fit to observed prices, or as errors in the reporting of prices (Schwartz and Smith, 2000). These disturbances are typically assumed independent.
var
\(ME_i\) measurement error of contract \(i\).
where the measurement error of futures contracts \(ME_i\) is equal to 'ME_'
[i] (i.e. 'ME_1'
, 'ME_2'
, ...) specified in arguments parameter_values
and parameter_names
.
There are three particular cases on how the measurement error of observations can be treated in the NFCP_Kalman_filter
function:
Case 1: Only one ME is specified. The Kalman filter assumes that the measurement error of observations are independent and identical.
Case 2: One ME is specified for every observed futures contract. The Kalman filter assumes that the measurement error of observations are independent and unique.
Case 3: A series of ME's are specified for a given grouping of maturities of futures contracts. The Kalman filter assumes that the measurement error of observations are independent and unique to their respective time-to-maturity.
Grouping of maturities for case 3 is specified through the ME_TTM
argument. This is a vector that specifies the maximum maturity to consider for each respective ME parameter argument.
in other words, ME_1 is considered for observations with TTM less than ME_TTM[1], ME_2 is considered for observations with TTM less than ME_TTM[2], ..., etc.
The first case is clearly the simplest to estimate, but can be a restrictive assumption. The second case is clearly the most difficult to estimate, but can be an infeasible assumption when considering all available futures contracts that make up the term structure of a commodity.
Case 3 thus serves to ease the restriction of case 1, and allow the user to make the modeling of measurement error as simple or complex as desired for a given set of maturities.
Diffuse Kalman filtering
If the initial values of the state vector are not supplied within the parameter_names
and parameter_values
vectors, a 'diffuse' assumption is used within the Kalman filtering algorithm.
Initial states of factors that follow an Ornstein-Uhlenbeck are assumed to equal zero.
The initial state of the first factor, given that it follows a Brownian motion, is assumed equal to the first element of log_futures
. This is an
assumption that the initial estimate of the spot price is equal to the closest to maturity observed futures price.
The initial states of factors that follow an Ornstein-Uhlenbeck have a transient effect on future observations. This makes the diffuse assumption reasonable and further means that initial states cannot generally be accurately estimated.
Value
NFCP_MLE
returns a list
with 10 objects. 9 objects are returned when the user has specified not to calculate the hessian matrix at solution.
MLE | numeric The Maximum-Likelihood-Estimate of the solution. |
estimated_parameters | vector . Estimated parameters. |
standard_errors | vector . Standard error of the estimated parameters. Returned only when hessian = T is specified. |
Information Criteria | vector . The Akaikie and Bayesian Information Criterion. |
x_t | vector . The final observation of the state vector.
When deterministic seasonality is considered, it also returns the observation point
along the deterministic curve. |
X | matrix . Optimal one-step-ahead state vector.
When deterministic seasonality is considered, it also returns the observation point
along the deterministic curve. |
Y | matrix . Estimated futures prices. |
V | matrix . Estimation error. |
Filtered Error | matrix . positive mean error (high bias), negative mean error (low bias),
mean error (bias) and root mean squared error (RMSE)
of the filtered values to observed futures prices. |
Term Structure Fit | matrix . The mean error (Bias), mean absolute error, standard deviation of error
and root mean squared error (RMSE) of each observed futures contract. |
Term Structure Volatility Fit | matrix . Theoretical and empirical volatility of observed futures contract returns |
proc_time | list . The real and CPU time (in seconds) the NFCP_MLE function has taken. |
genoud_value | list . Outputs of genoud .
|
References
Hannan, E. J., et al. (1970). "The seasonal adjustment of economic time series." International economic review, 11(1): 24-52.
Schwartz, E. S., and J. E. Smith, (2000). Short-Term Variations and Long-Term Dynamics in Commodity Prices. Manage. Sci., 46, 893-911.
Sørensen, C. (2002). "Modeling seasonality in agricultural commodity futures." Journal of Futures Markets: Futures, Options, and Other Derivative Products 22(5): 393-426.
Cortazar, G., and L. Naranjo, (2006). An N-factor Gaussian model of oil futures prices. Journal of Futures Markets: Futures, Options, and Other Derivative Products, 26(3), 243-268.
Mebane, W. R., and J. S. Sekhon, (2011). Genetic Optimization Using Derivatives: The rgenoud Package for R. Journal of Statistical Software, 42(11), 1-26. URL http://www.jstatsoft.org/v42/i11/.
Examples
# Estimate a 'one-factor' geometric Brownian motion model:
Oil_1F_estimated_model <- NFCP_MLE(
## Arguments
log_futures = log(SS_oil$contracts)[1:20,1:5],
dt = SS_oil$dt,
futures_TTM= SS_oil$contract_maturities[1:20,1:5],
N_factors = 1, N_ME = 1,
## Genoud arguments:
pop.size = 4, print.level = 0, gr = NULL,
max.generations = 0)