Returns the bond-equivalent yield of a Treasury bill.
Namespace: Imsl.FinanceAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxpublic static double Tbilleq(
DateTime settlement,
DateTime maturity,
double rate
)
Public Shared Function Tbilleq (
settlement As DateTime,
maturity As DateTime,
rate As Double
) As Double
public:
static double Tbilleq(
DateTime settlement,
DateTime maturity,
double rate
)
static member Tbilleq :
settlement : DateTime *
maturity : DateTime *
rate : float -> float
Parameters
- settlement
- Type: SystemDateTime
The DateTime settlement date of the Treasury bill.
- maturity
- Type: SystemDateTime
The DateTime maturity date of the Treasury bill. The maturity
cannot be more than a year after the settlement.
- rate
- Type: SystemDouble
A double which specifies the Treasury bill's discount rate at
issue date. The discount rate is an annualized rate of return based
on the par value of the bills. The discount rate is calculated on a
360-day basis (twelve 30-day months).
Return Value
Type:
Double
A
double which specifies the bond-equivalent yield for the
Treasury bill. This is an annualized rate based on the purchase price
of the bills and reflects the actual yield to maturity.
Remarks
It is computed using the following:
If 
otherwise,
In the above equation,

represents the
number of days starting at settlement date to maturity date.
See Also