IFinance.CoupNcd

Syntax

CoupNcd(Settlement: DateTime; Maturity: DataTime; Frequency: Integer; [Basis: Integer = 0]): DataTime;

Parameters

Settlement. The payment day on securities. Must be less than Maturity.

Maturity. The security's maturity date. Must be greater than Settlement.

Frequency. The annual number of coupon payments. The parameter can take the following values:

Basis. The day calculation method used. Select a value from 0 to 4:

Optional parameter.

Description

The CoupNcd method returns the date that is the next coupon date after the settlement date.

Comments

To get the number of days from the coupon action start to the agreement date, use the IFinance.CoupDayBs function.

Example

Add a link to the MathFin system assembly.

Sub UserProc;
Var
    r: 
DateTime;
Begin
    r := Finance.
CoupNcd(DateTime.ComposeDay(2008,01,01), DateTime.ComposeDay(2008,06,01)10);
    Debug.WriteLine(r);
End Sub UserProc;

After executing the example the console window displays the next coupon action date that is equal to 01.06.2008.

See also:

IFinance