analyze_AssetCorr {AssetCorr} | R Documentation |
Function to evaluate several default time series simultaneously
Description
To give a first insight of several default time series, this function combines multiple estimator functions (intra and inter) and visualize the results.
Usage
analyze_AssetCorr(DTS,N, B=NA, DB=NA, JC=FALSE, CI_Boot=NA, Adjust=0.0001,
type="bca", Intra=c("AMM","FMM","CMM","JDP1","JDP2","MLE","AMLE","Beta","Mode"),
Inter=c("Copula","Cov","JDP","MLE"))
Arguments
DTS |
a matrix, containing the default time series of each sector. |
N |
a matrix, containing the number of obligors at the beginning of the period of sector. |
B |
an integer, indicating how many bootstrap repetitions should be used for the single bootstrap corrected estimate (intra and inter). |
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 (intra and inter). |
JC |
a logical variable, indicating if the jackknife corrected estimate should be calculated (intra and inter). |
CI_Boot |
a number, indicating the desired 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 |
Adjust |
a number, which should be added to a observed default rate of 0 or subtracted form a observed default rate of 1 (only for the intraAMLE). |
type |
a string, indicating the desired method to calculate the bootstrap confidence intervals. For more details see |
Intra |
a combined string, indicating which intra correlation estimators should be used. All estimators are set as default. |
Inter |
a combined string, indicating which inter correlation estimators should be used. All estimators are set as default. |
Details
To give an first insight, the function provides an overview of the several default time series and estimates using different estimators (intra and inter) simultaneously. The plug-in estimates of the intra correlation using inter correlation methods will be estimated via intraMLE
.
If DB
is specified, the single bootstrap corrected estimate will be calculated by using the bootstrap values of the outer loop.
Value
The returned value is a list, containing the following entries:
Estimators_Intra
Sector |
Number of the sector |
Sector_Name |
Name of the sector |
Estimator |
Name of the applied estimator |
Estimate |
Value of the calculated estimate |
Type |
String, which indicating corrected/non-corrected estimates |
correction |
Name of the correction method |
B |
Number of single bootstrap repetitions |
DB |
Number of the double bootstrap repetitions |
CI_Boot |
Selected two-sided bootstrap confidence interval |
CI |
A string, indicating if the corresponding value is the upper or lower bound |
Estimators_Inter
Sector_1 |
Number of the sector |
Sector_Name_1 |
Name of the sector |
Sector_2 |
Number of the sector |
Sector_Name_2 |
Name of the sector |
Estimator |
Name of the applied estimator to Sector_1 and Sector_2 |
Estimate |
Value of the calculated estimateto Sector_1 and Sector_2 |
Type |
String, which indicating corrected/non-corrected estimates |
correction |
Name of the correction method |
B |
Number of single bootstrap repetitions |
DB |
Number of the double bootstrap repetitions |
CI_Boot |
Selected two-sided bootstrap confidence interval |
CI |
A string, indicating if the corresponding value is the upper or lower bound |
Author(s)
Kevin Jakob
References
Botha M, van Vuuren G (2010). “Implied asset correlation in retail loan portfolios.” Journal of Risk Management in Financial Institutions, 3(2), 156–173.
Chang J, Hall P (2015). “Double-bootstrap methods that use a single double-bootstrap simulation.” Biometrika, 102(1), 203–214.
De Servigny A, Renault O (2002). “Default correlation: empirical evidence.” Working Paper, Standard and Poors. Available at: https://www.semanticscholar.org/paper/Default-correlation%3A-empirical-evidence-Servigny-Renault/aae251436d0e3b489951c0d38463d71106755675.
Duellmann K, Gehde-Trapp M (2004). “Systematic risk in recovery rates: an empirical analysis of US corporate credit exposures.” Bundesbank Series 2, Discussion Paper. Available at SSRN: http://hdl.handle.net/10419/19729. Accessed: 02.11.2017.
Efron B, Tibshirani RJ (1994). An introduction to the bootstrap. CRC press.
Frei C, Wunsch M (2018). “Moment Estimators for Autocorrelated Time Series and their Application to Default Correlations.” Journal of Credit Risk, 14, 1–29.
Gordy MB (2000). “A comparative anatomy of credit risk models.” Journal of Banking & Finance, 24(1), 119–149.
Gordy MB, Heitfield E (2010). “Small-sample estimation of models of portfolio credit risk.” In Recent Advances in Financial Engineering: Proceedings of the KIER-TMU International Workshop on Financial Engineering, 2009: Otemachi, Sankei Plaza, Tokyo, 3-4 August 2009, 43–63.
Kalkbrener M, Onwunta A (2010). “Validating structural credit portfolio models.” Model risk - identification, measurement and management. Risk Books, London, 233–261.
Lucas DJ (1995). “Default correlation and credit analysis.” The Journal of Fixed Income, 4(4), 76–87.
Meyer C (2009). “Estimation of intra-sector asset correlations.” The Journal of Risk Model Validation, 3(3), 47–79.
Teetor P (2011). R Cookbook: Proven recipes for data analysis, statistics, and graphics. O'Reilly Media, Inc.
See Also
intraAMM
, intraFMM
, intraJDP2
,
intraMLE
, intraJDP1
, intraCMM
,
intraMode
,intraBeta
,
interJDP
, interCopula
,interCMM
,
interCov
, interMLE
, intraALL
,
interALL
Examples
library(mvtnorm)
set.seed(111)
NoO=1000 #Number of obligors in each sector
Years=20
AC=0.3
PD=0.01
Psi=rmvnorm(Years,sigma=matrix(c(1,0.5,0.5,0.5,1,0.5,0.5,0.5,1),3))
PDcond1=pnorm((qnorm(PD)-sqrt(AC)*Psi[,1])/sqrt(1-AC))
PDcond2=pnorm((qnorm(PD)-sqrt(AC/2)*Psi[,2])/sqrt(1-AC/2))
PDcond3=pnorm((qnorm(PD)-sqrt(AC*2)*Psi[,3])/sqrt(1-AC*2))
DTS=cbind(rbinom(Years,NoO,PDcond1),rbinom(Years,NoO,PDcond2),rbinom(Years,NoO,PDcond3))
N=matrix(NoO,nrow = Years,ncol = 3)
Output<-analyze_AssetCorr(DTS,N)
#Bootstrap Correction and CIs
Output<-analyze_AssetCorr(DTS,N,B=100,CI_Boot=0.95)
#Double Bootstrap Correction and Jackknife
Output<-analyze_AssetCorr(DTS,N,DB=c(50,50),JC=TRUE)