Returns the accrued interest for a security that pays interest at maturity.
Name | Type | Description |
arg1 | any | Is the security's issue date, expressed as a serial date number. |
arg2 | any | Is the security's maturity date, expressed as a serial date number. |
arg3 | any | Is the security's annual coupon rate. |
arg4 | any | Is the security's par value. |
arg5 | any | Is the type of day count basis to use. |
builder.CreateFile("xlsx"); var oWorksheet = Api.GetActiveSheet(); var oFunction = Api.GetWorksheetFunction(); oWorksheet.GetRange("A1").SetValue(oFunction.ACCRINTM("1/1/2018", "10/15/2018", "3.50%", 1000, 1)); builder.SaveFile("xlsx", "ACCRINTM.xlsx"); builder.CloseFile();