IFinance.Fv

Syntax

Fv(

Rate: Double;

PeriodCount: Integer;

PeriodPayment: Double;

PresentValue: Double;

Type: Integer): Double;

Parameters

Parameters Description Constraints
Rate Interest rate for a period. Cannot be negative.
PeriodCount Total number of annuity payment periods.  
PeriodPayment Payment, done each period.  
PresentValue Present net value or the total sum, which is currently equal to the set of future payments.  
Type Selecting time of payment:
0 - in the end of the period.
1 - in the beginning of the period.
Must take the value 0 or 1.

Description

The Fv method returns future value of the investment, at the condition of regular equal payments and constant interest rate.

Comments

All the arguments, denoting money, which has to be paid (for example, saving accounts), are represented as negative numbers; all the money, which has to be received (for example, dividends), are represented as positive numbers.

Fv is calculated using the following formula:

Example

To execute the example, add a link to the MathFin system assembly.

Sub UserProc;
Var
    r: Double;
Begin
    r := Finance.
Fv(0.064, -200, -5000);
    Debug.WriteLine(r);
End Sub UserProc;

After executing the example the console window displays the future investment value equal to 1506.1617.

See also:

IFinance