Last active
November 1, 2015 05:05
-
-
Save git-hemant/e8138682b36044df308c to your computer and use it in GitHub Desktop.
How "Return Rate" is calculated
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Return Rate shows the total return you have received since opening of account. | |
It is calculated by using following formula: | |
Total principal - It includes received principal amount and outstanding principal amount. | |
Interest received - Total interest received till date (since account is opened). | |
Charged Off - Total amount which is lost to charged off loans, | |
here for each loan we will calculate lost principal by | |
note amount - received amount. | |
Return Rate = ((Interest received - Losses) / Total Principal) X 100) | |
Please comment on this page if you have suggestion on improving this calculation. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment