Sunday, July 23, 2017

More bad news and a plan



I was trying to wrap up this project on Lending Club and was visiting some of the investor user forums, I discovered something I hadn’t considered. One investor complained about the impact of the service fee when loans are paid off early. Lending Club will assess a fee of 1% on the full principle if the loan is more than a year old when it is paid off. I looked at this and it seemed reasonable, but you certainly would prefer these good borrowers paid off the loan over time.

While analyzing this I looked at the  payments made on a specific loan that was paid off early. I duplicated the calculations Lending Club made with each payment and realized how misleading the interest rate is. They compute the interest on the declining balance (as they should) but as the payments add up, the interest you earn declines.

I did an example starting with $100 invested at 10%. The borrower would have to pay back about $3.25 a month to pay this off in 36 months. Following is a chart of the first few months of payments.

Year
Month
Balance
Payment
Interest
Pd Princ
New Bal
10.00%
0
$100.0000



$100.0000
1
1
$100.0000
$3.2500
$0.83
$2.4167
$97.5833
1
2
$97.5833
$3.2500
$0.81
$2.4368
$95.1465
1
3
$95.1465
$3.2500
$0.79
$2.4571
$92.6894
1
4
$92.6894
$3.2500
$0.77
$2.4776
$90.2118

If you take this through the 36 months and total by year, you get the following sums.


Amt Pd
Interest
Balance
Ret/$
Year 1
$39.0000
$8.6332
$69.6332
8.63%
Year 2
$39.0000
$5.4534
$36.0866
7.83%
Year 3
$39.0000
$1.9406
-$0.9727
5.38%
Life
$117.0000
$16.0273

5.34%

You earned $16.03 in interest on $100 over 3 years. That is an average return rate of 5.34%. If you add in the service fee (totals $1.17), your return is further reduced to 4.95%. The only way you can continue to get near 10% is to constantly re-invest the money you receive. When you want off this merry-go-round, you will pay a penalty.

Since I’m getting off by 2021, I will be paying this penalty in the last couple of years. And, this does not include the impact of charge offs and fully paid loans. 

My current plan is to continue to acquire some new shorter-term notes and buy some notes in their final year. None of these will have final payments beyond 2021. And I’ll be withdrawing some cash for investments elsewhere.

Monday, July 17, 2017

One last shot at salvaging my Lending Club account



My last post discussed a way of salvaging my Lending Club account by buying notes from the secondary market. I’m buying notes that have had at least two years of regular payments and are in their last year. Hopefully, this will reduce the number of charge offs.

The only other way of adding notes is to fund new loans as they become available. The question then becomes, how to identify the better opportunities? As I write this Lending Club has 645 loans available for funding. A few hours a go there were 691 potential loans. In between, Lending Club added some new loans (they do this 4 times a day) and some have dropped off. That’s too much activity for me to want to handle manually.

Fortunately, they do have a download mechanism to allow you to get a data file. Like to other data files, it contains lots of information. There are 121 potential data points for each loan. This leads me to want to develop an automated method (computer program) to process these loans and select the better ones. To do this you need to identify the fields that are most likely to indicate desirable loans. This can be done by using previous loan data and back testing scenarios.

I wrote another program to accomplish this back testing by simulating what would have happened if I had implemented this strategy beginning in 2015. I picked two potential data fields that I felt in combination might provide a selection method of identifying notes with potentially better results. I passed all loans prior to 2015 building a table of counts. I used a technique like the one described a few posts back. I put the two fields together in a match code and built a table from the pre-2015 notes. I used only the completed loans. The table had the match code, the number of notes with this match code, the amount of the loans and the amount paid back. From these I computed the return on investment.

I only used 36-month notes since those are the ones I want to invest in. This initial table had 17,707 entries (number of unique combinations of the two fields). I then passed all the 1st quarter 2015 notes, building the match code and getting the appropriate values from the table. I only selected notes that had at least 100 table entries and a return of $1.05 or more. Finally, I added the 1st quarter note values to the table and then moved on to the 2nd quarter notes. I repeated this process for all 8 quarters in 2015 and 2016. Following is a table of the results.

36 Months
All Notes
Selected Notes
Quarter Issued
Number
% Charged Off
Return/$
Number
% Charged Off
Return/$
15_Q1
56,569
11.5%
$0.953
4,130
9.2%
$0.956
15_Q2
64,222
10.6%
$0.883
4,191
8.5%
$0.888
15_Q3
73,572
8.6%
$0.810
4,724
7.1%
$0.811
15-Q4
88,810
6.9%
$0.717
5,215
5.6%
$0.720
16_Q1
96,120
5.6%
$0.608
4,049
3.9%
$0.614
16_Q2
74,537
4.3%
$0.518
2,106
2.6%
$0.514
16_Q3
73,898
2.4%
$0.425
2,005
1.2%
$0.407
16_Q4
78,940
0.7%
$0.304
1,768
0.4%
$0.297

These are 36-month notes so some are notes not yet fully paid or charged off and are still being paid monthly by the borrower. The selected notes are better relative to charged off rate. The amount returned thus far is better for the older notes and not quite as good for the newer one. However, the newer ones have a higher percentage of currently active loans.

The results are not encouraging. There is an improvement in return rate, but less than 1%. This is not a combination that I will be using in the future. I can and might generalize the program to look at other fields and combinations. But at the moment, I’m inclined to move on to other projects for a while.

If I find something of interest, I’ll post it. Follow me on Twitter @billlanke and I’ll let you know when that happens.