Nexgen Case
Nexgen Case
Nexgen Case
In this case, we structure a CDO to be issued by an SPV set up by Nexgen to meet ABC’s
client’s needs. Specifically, the objective is to create an AAA grade tranche for the client. The
residual tranche would be held by Nexgen. The universe of available bonds is Nexgen’s bond
portfolio.
We make the following assumptions, which will act as boundaries to the CDO structuring
problem:
- The client’s risk requirement of AAA is equivalent the 5 year AAA default rate (0.003)
- Bond defaults are independent
- For reasons of computing power, the CDO will have only 20 bonds as collateral
From Nexgen’s point of view, the objective is to maximize returns. In order to minimize risk for
Nexgen, under the assumption of independent defaults, it is better to make up a portfolio
containing as many bonds as possible. We, therefore, select the 20 highest yielding bonds from
the available set. These bonds can be found in Table 1 in the Appendix.
We extended the basic result that under default independence, the probability of 1 bond
defaulting in a two bond portfolio is :
The code used to compute the default probabilities for a given number of simultaneous defaults
is included in the Appendix. Table 2 shows the probabilities of simultaneous defaults for 1 to 3
bonds for portfolios containing various numbers of bonds. This illustrates the previous point that
under independent default it is advantageous for Nexgen to put as many bonds as collateral in
this CDO as possible. It also illustrates that probabilities of simultaneous default get very small,
very fast. Moreover, Table 2 shows that the probability of 3 bonds defaulting is 0.29% which is
within the client’s acceptable risk range.
Thus Junior tranche attachment point is 10%. In other words, two bonds will need to default
before the client starts facing losses. Given the bonds in the CDO and under the assumption of
uncorrelated defaults, this corresponds to a default rate of 0.29%. The total spread of these
bonds is 897 basis points.
The exact allocation of this spread would require more information on Nexgen’s objectives,
however, given the clients’ foremost need for safety, we assume that they would be willing to
accept a very low spread. We, therefore,based on the spread that AAA-rated bonds has in the
Nexgen’s sample bond portfolio(Federal National Mortgage - 20.3bp,General Electric Capital
Corporation - 24.5bp,MBIA Insurance Corp - 32.5bp) suggest that around 20-30bp be given to
the client’s senior tranche, with the rest going to Nexgen. Though this is not a fixed amount, we
believe that Nexgen should receive a minimum spread of 850 bp for this CDO to acceptable.
Appendix
Selected Bonds
Default Probabilities
Note: We have only listed the probabilities up to 3 defaults, as beyond this the probabilities are
essentially zero.
1 1.17% NA NA
2 2.33% 1.19% NA
Code
# setup ---------------------------------------
setwd("C:/Users/thepo/Dropbox/18HS/Cours/Derivatives/CDO Case")
rm(list = ls())
raw <- read.csv("Nexgen_data.csv", skip = 2, stringsAsFactors = FALSE)
maxbond <- 20
nbond <- c
# preallocation -------------------
# subset is first nbond bonds with largest spread
subs_ind <- sort(raw$Spread.5.year, index.return = TRUE)$ix[1:nbond]
subs <- raw[subs_ind,]
ndef <- j
ind <- combn(nbond, ndef)
for(i in 1:(dim(ind)[2]) ){
# NOTE: this is the line which computes the actual default probabilities
prod[i] <- prod(p[ind[,i]]) * prod(np[-ind[,i]])