Click or drag to resize
BondAccrintm Method
Returns the interest which has accrued on a security that pays interest at maturity.

Namespace: Imsl.Finance
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public static double Accrintm(
	DateTime issue,
	DateTime maturity,
	double rate,
	double par,
	DayCountBasis basis
)

Parameters

issue
Type: SystemDateTime
Ahe DateTime issue date of the security.
maturity
Type: SystemDateTime
The DateTime date of the security's maturity.
rate
Type: SystemDouble
A double which specifies the security's annual coupon rate.
par
Type: SystemDouble
A double which specifies the security's par value.
basis
Type: Imsl.FinanceDayCountBasis
A DayCountBasis object which contains the type of day count basis to use.

Return Value

Type: Double
A double which specifies the accrued interest.
Remarks

= {\it par} \times {\it rate} \times
            {\frac{A}{D}}

In the above equation, A represents the number of days starting at issue date to maturity date and D represents the annual basis.

See Also