public class DayCountConvention_30U_360 extends Object implements DayCountConventionInterface
(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(Calendar startDate,
Calendar endDate)
Return the number of days between startDate and endDate given the
specific daycount convention.
|
double |
getDaycountFraction(Calendar startDate,
Calendar 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(Calendar startDate, Calendar endDate)
DayCountConventionInterface
getDaycount
in interface DayCountConventionInterface
startDate
- The start date given as a Calendar
.endDate
- The end date given as a Calendar
.public double getDaycountFraction(Calendar startDate, Calendar endDate)
DayCountConventionInterface
getDaycountFraction
in interface DayCountConventionInterface
startDate
- The start date given as a Calendar
.endDate
- The end date given as a Calendar
.Copyright © 2015. All rights reserved.