
Last chance! 50% off unlimited learning
Sale ends in
The inter correlation parameter can be estimated by matching the empirical Joint Default Probability of two default time series with the theoretical one. The estimated parameter is the correlation of the systematic factors.
interJDP(d1, n1, d2, n2, rho1, rho2, B = 0, DB=c(0,0), JC = FALSE,
CI_Boot, type="bca", plot=FALSE)
a vector, containing the default time series of sector 1.
a vector, containing the number of obligors at the beginning of the period in sector 1.
a vector, containing the default time series of sector 2.
a vector, containing the number of obligors at the beginning of the period in sector 2.
estimated intra correlation of sector 1.
estimated intra correlation of sector 2.
an integer, indicating how many bootstrap repetitions should be used for the single bootstrap corrected estimate.
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.
a logical variable, indicating if the jackknife corrected estimate should be calculated.
a number, indicating the desired confidence level if the single bootstrap correction is specified. By default, the interval is calculated as the bootstrap corrected and accelerated confidence interval (Bca).
a string, indicating the desired method to calculate the confidence intervals. For more details see boot.ci
.
a logical variable, indicating whether a plot of the single bootstrap density should be generated.
The returned value is a list, containing the following components (depending on the selected arguments):
Estimate of the original method
Bootstrap corrected estimate
Double bootstrap corrected estimate
Jackknife corrected estimate
Selected two-sided bootstrap confidence interval
Estimates from the bootstrap resampling
Estimates from the double bootstrap resampling- inner loop
Estimates from the double bootstrap resampling- outer loop
This function estimates the inter correlation of the systematic factor. In general, the inter correlation can be estimated for the asset variables or the systematic factors. To ensure the traceability of the estimation, the intra correlation estimates will be used as plug-in estimates. Hence only one parameter (inter correlation) must be estimated. The inter correlation of the systematic factor can be transformed to the correlation of the asset variables as follows:
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
).
chang2015doubleAssetCorr
de2002defaultAssetCorr
efron1994introductionAssetCorr
kalkbrener2010validatingAssetCorr
# NOT RUN {
d1=defaultTimeseries(1000,0.1,10,0.01)
d2=defaultTimeseries(1000,0.2,10,0.01)
n1=n2=rep(1000,10)
InterCorr=interJDP(d1,n1,d2,n2,0.1,0.2)
# }
# NOT RUN {
InterCorr=interJDP(d1,n1,d2,n2,0.1,0.2, JC=TRUE)
InterCorr=interJDP(d1,n1,d2,n2,0.1,0.2, B=1000, CI_Boot=0.95)
InterCorr=interJDP(d1,n1,d2,n2,0.1,0.2, DB=c(10,50))
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab