Introduction
When creating a Savings Products, the user can define how interest posting (or compounding) and calculation will happen.
Mifos out-of-the-box currently supports two types of interest calculation; Average Balance and Minimum Balance.
The user may also choose from two types of time period for interest calculation; Days and Months
For interest posting, only Months are supported.
Interest Posting
When a savings product is created, the user defines the frequency of interest posting of which only Monthly is supported in Mifos. Once at least one savings is open for a given savings product, a number of attributes of a savings product cannot be changed. The interest posting frequency and interest calculation frequency are two of this such attributes.
Interest posting always occurs on the end of the month and the exact dates are determined based on the start of the fiscal year (which is currently always Jan 1st in Mifos) and the chosen interest posting frequency.
For example every 3 months from Jan 1st would product interest posting dates of:
31st of March
30th of June
30th of September
31st of December
Interest posting is possible in Mifos from:
- An Overnight batch job named SavingsIntPostingTask that detects savings accounts that are due for interest posting
- When a Savings Account is closed and interest is due based on balance of savings account at closing.
Interest is only calculated and posted for the last valid interest posting period for a given savings account. As a result this means the following is also enforced:
- No adjustments of deposits or withdrawals are allowed if the transaction exists in a previous interest posting period. To help enforce this we post interest even if the calculated interest is zero as this will result in the user being unable to adjust transactions prior to the interest posting.
- No back-dated transactions are allowed if the transaction exists in a previous interest posting period
How Interest Is Calculated
When it becomes time to execute an interest posting
Interest Calculation Period
At present interest calculation is carried out by an overnight batch job (SavingsIntCalcTask). It determines when to run based on the next interest calculation date value stored in savings_account -> next_int_calc_date datable table/column.
When a savings account goes active for the first time, an initial next calculation date is determine based on the start of the fiscal year which is fixed at January 1st and the interest calculation time period chosen in the savings account product definition. For interest calculation, this can be Daily (e.g. every x days) or Monthly at the end of the month (e.g. every x months on last day of month).
So interest is only calculated for any transactions that occur within a given 'interest calculation period'. The interest calculated for a given period is stored (savings_account -> int_to_be_posted) until the next interest posting date is reached whereby the sum of all calculated interest is posted to the savings account.
Interest Calculation Dates in Months
Example:
Interest calculation is determined every 3 months so based on starting from Fiscal start of year, the valid interest calculation dates are:
Jan-01 to Mar-31
Apr-01 to Jun-30
July-01 to Sep-30
Oct-01 to Dec-31
Interest Calculation Dates in Days
Interest calculation is determined every 28 days (4 weeks) so based on starting from Fiscal start of year, the valid interest calculation dates are:
Fri Jan-01 to Fri Jan 29
Sat Jan-30 to Fri Feb 26
..
..
Interest Posting
Interest posting always occurs on a monthly basis on the last day of the month.
When interest is due for posting, its takes the value from (savings_account -> int_to_be_posted) and posts it the date of last day of month.
Interest posting is handled overnight by batch job (SavingsIntPostingTask).
Interest Posting Dates in Months
Interest calculation is determined every 1 months so based on starting from Fiscal start of year, the valid interest posting dates are:
Jan-01 to Jan-31
Feb-01 to Feb-28/29
Mar-01 to Mar-31
..
..
Dec-01 to Dec-31
Interest Calculation Formula
Interest Calculation Formula |
Balance |
Table Used |
---|---|---|
A = P(1+r/n) |
Minimum Balance |
SAVINGS_TRXN_DETAIL |
A = P(1+r/n) |
Average Balance |
SAVINGS_TRXN_DETAIL |
r = R/100 x D/F
P = AvB/D or MB/D
I = P(r) only if P is greater than or equal to minimum balance required for interest calculation otherwise the interest (I) will be zero.
AvB = Total Average Balance for duration D
MB = Minimum Balance for duration D
D = Duration/Interval (Days) for which the interest is being calculated
F = Number of Days in Financial Year
P = Principal amount (initial amount) (Average/Minimum Balance)
R = Annual rate of interest (as a decimal) (defined during savings product creation)
r = Effective interest rate for the duration D
I = Interest Amount
Interest Calculation Examples
The purpose of these interest caluclation example is to describe by example how savings work in mifos. From reading through these, you should be able to understand
- How and when dates for interest calucation and posting are determined
- How the Average Balance algorithm works
- How the Minimum Balance algorithm works
- How and when interest is calculated for a given Interest Calculation Period
- How and when interest is posted to a savings account
see Interest Calculation For Average Balance By Example
see Interest Calculation For Minimum Balance By Example
Interest Calculation/Posting (Notes)
Interest Calculation Date: SAVINGS_ACCOUNT.LAST_INT_CALC_DATE (fromDate), SAVINGS_ACCOUNT.NEXT_INT_CALC_DATE(toDate)
Interest Posting Date: SAVINGS_ACCOUNT.LAST_INT_POST_DATE, SAVINGS_ACCOUNT.NEXT_INT_POST_DATE
Based on the interest calculation meeting from Savings Product Offering "next interest calculation date" is set during interest calculation.
The interest calculation is done for the period determined by fromDate and toDate.
Initial (first) interest calculation has LAST_INT_CALC_DATE as null, in this case the activation date account is taken as fromDate.
Interest calculation takes place when the NEXT_INT_CALC_DATE is older than currentDate.
Interest calculation takes place when principal (P) is greater or equal to the Minimum balance required for interest calculation(Savings Product has property miniBalForIntCalc)
Calculated interest is saved in SavingsBO.interestToBePosted field after every interest calculation.
e.g. if there interest calculation period is 1 month and posting frequency is 3 month then the interest will be calculated 3 times and stored in SavingsBO.interestToBePosted. Interest Posting Batch job will pick the interest from SavingsBO.interestToBePosted.
This makes a necessary condition that Interest calculation batch job should always run before interest posting batch job.
If one interest calculation fails interest posting job has no way to determine and it will still post the interest as SavingsBO.interestToBePosted which could be zero if interest calculation job fails.
Warning
At present, once interest for a given calculation period is calculated it will never again be recalculated however it is possible for users to adjust their last transaction which could well be in the last 'calculation period' and thus the previous interest figure would be wrong.
Handy Hint
It may be just as easy to allow a user adjust ANY transaction and to calculate the interest for account based on all details every time.