ODDFPRICE
function ODDFPRICE(
arg1: any = null,
arg2: any = null,
arg3: any = null,
arg4: any = null,
arg5: any = null,
arg6: any = null,
arg7: any = null,
arg8: any = null,
arg9: any = null,
): number | string | boolean
Description
Returns the price per $100 face value of a security with an odd first period.
Parameters
- arg1
any
null Is the security's settlement date, expressed as a serial date number.
- arg2
any
null Is the security's maturity date, expressed as a serial date number.
- arg3
any
null Is the security's issue date, expressed as a serial date number.
- arg4
any
null Is the security's first coupon date, expressed as a serial date number.
- arg5
any
null Is the security's interest rate.
- arg6
any
null Is the security's annual yield.
- arg7
any
null Is the security's redemption value per $100 face value.
- arg8
any
null Is the number of coupon payments per year.
- arg9
any
null Is the type of day count basis to use.
Returns
number | string | boolean
Try It
var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.ODDFPRICE("1/1/2017", "6/1/2019", "12/1/2016", "3/15/2017", 0.05, 0.09, 100, 2));