Vector C1[a] Monthly delinquency/foreclosure servicing cost
Vector I1[m] Inflation rate on the monthly delinquency cost
Vector D1[m] Count of loans delinquent
Vector D2[a] Delinquent dispersion
Vector F1[m] Count of loans in foreclosure
Vector F2[a] Foreclosure dispersion
Vector DCost[m] Total delinquency cost in current month
DCost = sum of [ c1[a] X i1[m] X ( d1[m] X d2[a] + f1[m] X f2[a] ) ]
Calculation
----------------------
The calculation must cycle until the dispersion goes to 0.
Cycle Month m = 5
For the current month:
Delin Month a = 1
WHILE Dispersion > 0 then
Var 6 = Var 6 Plus
DCost = sum of [ c1[a] X i1[m] X ( d1[m] X d2[a] + f1[m] X f2[a] ) ]
Times the loan count for the period m.
Time the servicing cost inflation rate for the period m.
Increment a by 1
END
Notes:
1. This is only for delinquency not current loan servicng cost.
All vectors start at 1 ( One month delinquernt)
2. If you set the dispersion to be 1 in the first month, then
you minimize the cycle time.
Vectors
-------------------
adbl_llcnta(k) - Loan count in the current month
'-- Number of loans delinquent
adbl_lcdel(k) = (adbl_lrdel(k) * adbl_llcnta(k))
'-- Number of loans in foreclosure
adbl_lcfor(k) = (adbl_lrfor(k) * adbl_llcnta(k))
adbl_llcdel(k) - Total delinquency cost in the current month
adbl_lcdel(k) - Delinquent count in current period
adbl_lfdel(k) - foreclosure count in current period
New Vectors
-------------------------
This cost vector is the additioanl cost to service in each delinquent
month. No distinction is made for delin vs foreclosure.
adbl_lfcdem(k) - Delin/FC cost for each month delinquent
1 = One month delinquent cost
2 = Two month delinquent cost
adbl_lfnds(k) - Delin/FC cost inflation
360 month schedule of delinquency cost inflation
Obsolete
-------------------------
adbl_lfcdel(k) - No longer used!