interCopula {AssetCorr}R Documentation

Copula Based Maximum Likelihood Estimator

Description

The inter correlation parameter can be estimated by fitting a Gaussian copula with Vasicek distributed margins on two observed default rate time series. The estimated parameter is the inter correlation of the systematic factors.

Usage

interCopula(df1, df2, B = 0, DB=c(0,0),JC = FALSE, 
 CI, CI_Boot, type="bca", plot=FALSE)

Arguments

df1

a vector, containing the default rate time series of sector 1.

df2

a vector, containing the default rate times eries of sector 2.

B

an integer, indicating how many bootstrap repetitions should be used for the single bootstrap corrected estimate.

DB

a combined vector, indicating how many bootstrap repetitions should be used for the inner (first entry) and outer loop (second entry) to correct the bias using the double bootstrap.

JC

a logical variable, indicating if the jackknife corrected estimate should be calculated.

CI

a number, indicating the desired asymptotic confidence interval of the estimate.

CI_Boot

a number, indicating the desired bootstrap confidence interval if the single bootstrap correction is specified. By default, the interval is calculated as the bootstrap corrected and accelerated confidence interval (Bca). Furthermore, the analytical confidence intervals are provided, using the same value as CI_Boot.

type

a string, indicating the desired method to calculate the confidence intervals. For more details see boot.ci.

plot

a logical variable, indicating whether a plot of the single bootstrap density should be generated.

Details

This function estimates the inter correlation of the systematic factors. In general the inter correlation can be estimated for the asset variables or the systematic factors. This method estimates the inter correlation of the systematic factors. The parameter will be estimated via Maximum Likelihood estimation, which ensures that an asymptotic confidence interval can be provided. The inter correlation of the systematic factors can be transformed to the correlation of the asset variables as follows:

rho_Asset= rho_Systematic*sqrt(rho_1*rho_2)

The estimated inter correlation of the systematic factors lies between -1 and 1. If DB is specified, the single bootstrap corrected estimate will be calculated using the bootstrap values of the outer loop (oValues).

Value

The returned value is a list, containing the following components (depending on the selected arguments):

Original

Estimate of the original method

Bootstrap

Bootstrap corrected estimate

Double_Bootstrap

Double bootstrap corrected estimate

Jackknife

Jackknife corrected estimate

CI

Selected two-sided asymptotic bootstrap confidence interval

CI_Boot

Selected two-sided bootstrap confidence interval

bValues

Estimates from the bootstrap resampling

iValues

Estimates from the double bootstrap resampling- inner loop

oValues

Estimates from the double bootstrap resampling- outer loop

References

Chang J, Hall P (2015). “Double-bootstrap methods that use a single double-bootstrap simulation.” Biometrika, 102(1), 203–214.

Efron B, Tibshirani RJ (1994). An introduction to the bootstrap. CRC press.

Pfeuffer M, Nagl M, Fischer M, Roesch D (2020). “Parameter Estimation and Bias Correction in the Vasicek Credit Portfolio Model.” Journal of Risk, 22number.

See Also

interJDP, interCMM, interMLE, interCov

Examples

set.seed(10)
d1=defaultTimeseries(1000,0.1,10,0.01)
d2=defaultTimeseries(1000,0.2,10,0.01)
n=rep(1000,10)

df1=d1/n
df2=d2/n

InterCorr=interCopula(df1,df2, CI=0.95)



InterCorr=interCopula(df1,df2, JC=TRUE)

InterCorr=interCopula(df1,df2, B=1000, CI_Boot=0.95, plot=TRUE)

InterCorr=interCopula(df1,df2, DB=c(50,50))



[Package AssetCorr version 1.0.4 Index]