Returns the amount one receives when a fully invested security reaches
the maturity date.
Namespace: Imsl.FinanceAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxpublic static double Received(
DateTime settlement,
DateTime maturity,
double investment,
double rate,
DayCountBasis basis
)
Public Shared Function Received (
settlement As DateTime,
maturity As DateTime,
investment As Double,
rate As Double,
basis As DayCountBasis
) As Double
public:
static double Received(
DateTime settlement,
DateTime maturity,
double investment,
double rate,
DayCountBasis^ basis
)
static member Received :
settlement : DateTime *
maturity : DateTime *
investment : float *
rate : float *
basis : DayCountBasis -> float
Parameters
- settlement
- Type: SystemDateTime
The DateTime settlement date of the security.
- maturity
- Type: SystemDateTime
The DateTime maturity date of the security.
- investment
- Type: SystemDouble
A double which specifies the amount invested in the security.
- rate
- Type: SystemDouble
A double which specifies the security's rate at issue date.
- 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 amount received at maturity for a
fully invested security.
Remarks
It is computed using the following:
In the equation above,

represents the number
of days in a year based on the annual basis, and

represents the number of days in the
period starting with the issue date and ending with the maturity
date.
See Also