public class DayCountConvention_30U_360 extends Object implements DayCountConvention, Serializable
(endDateYear - startDateYear) * 360.0 + (endDateMonth - startDateMonth) * 30.0 + (endDateDay - startDateDay)
where startDateDay and endDateDay are adjusted towards 30, when being larger than 30 or if isEndOfMonth, also if
they fall on the last day of February. See 30/360 US definition for details.
This day count convention is sometime called Bond basis.
getDaycount corresponds to the implementation of the "US method" of Excel function DAYS360, i.e., DAYS360(startDate,endDate,FALSE).
getDaycountFraction corresponds to the implementation of the "30U/360 method" of Excel function YEARFRAC, i.e., YEARFRAC(startDate,endDate,0).
| Constructor and Description |
|---|
DayCountConvention_30U_360()
Create a 30U/360 day count convention.
|
DayCountConvention_30U_360(boolean isEndOfMonth)
Create a 30U/360 day count convention.
|
| Modifier and Type | Method and Description |
|---|---|
double |
getDaycount(LocalDate startDate,
LocalDate endDate)
Return the number of days between startDate and endDate given the
specific daycount convention.
|
double |
getDaycountFraction(LocalDate startDate,
LocalDate endDate)
Return the daycount fraction corresponding to the period from startDate to endDate given the
specific daycount convention.
|
public DayCountConvention_30U_360()
public DayCountConvention_30U_360(boolean isEndOfMonth)
isEndOfMonth - If true, an end-of-month day will always count as "30", even if we are in February.public double getDaycount(LocalDate startDate, LocalDate endDate)
DayCountConventiongetDaycount in interface DayCountConventionstartDate - The start date given as a LocalDate.endDate - The end date given as a LocalDate.public double getDaycountFraction(LocalDate startDate, LocalDate endDate)
DayCountConventiongetDaycountFraction in interface DayCountConventionstartDate - The start date given as a LocalDate.endDate - The end date given as a LocalDate.Copyright © 2019. All rights reserved.