Default and Prepayment Rates by Mark-to-Market LTV

Len Mills
5/24/2015

Data Sources and Transformations

Raw data sources

Original, combined LTV to a mark-to-market LTV

  • Mortgage loan balance updated with scheduled amortization
  • Property value updated with CBSA and state-level HPI since loan orgination.
  • Mark-to-market LTV equals updated balance divided by updated house value.

Summary of Dataset

The dataset contains four variables for each of the ~640 loans:

  • two factor variables indicating whether the loan defaulted or prepaid. Note that a loan may not have defaulted or prepaid.
  • mark-to-market, combined loan-to-value ratio, expressed as percent and denoted as MLTV.
  • MLTV group
cbind(length(dat$mkt_cltv),
  round(100*mean(dat$default),2),
  round(100*mean(dat$prepay),2),
  round(mean(dat$mkt_cltv),2))
       [,1] [,2] [,3]  [,4]
[1,] 663976 0.89 68.1 67.39
dat$mltv_group <- cut(dat$mkt_cltv,breaks=seq(0,200,7))

Default/Prepay Rates by MLTV Group

mltv_profile <- ddply(dat, .(mltv_group), 
  summarise, default_rate = 100*mean(default),  prepay_rate = 
  100*mean(prepay))

An interactive version of this mark-to-market profile can be found at An MLTV Profile Visualization.

plot of chunk unnamed-chunk-4

Interpretation of Results

  • The prepayment and default rates should be interpreted as 'lifetime rates'. The average loan age in this sample is about 4.5 years. Therefore, a lifetime rate of 50% rate would imply about an annualized rate of about 14.3%, and a 10% lifetime rate translates into about a 2.3% annual rate.
  • The homeowners' willingness-to-default and ability-to-prepay are apparent in these plots. As the amount of the loan increases relative to the value of the house (i.e. the LTV rises), the willingness of the homeowners to default on their mortgages increases. The default rate starts at virtually zero, but when the house becomes 'under-water' with a LTV > 100, the default rate begins to ascend. Similarly, the homeowners ability to prepay is intially flat, but begins to descend as a LTVs rise above 100.