All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.finmath.time.daycount.DayCountConvention_30U_360 Maven / Gradle / Ivy

/*
 * (c) Copyright Christian P. Fries, Germany. Contact: [email protected].
 *
 * Created on 07.09.2013
 */

package net.finmath.time.daycount;

import java.io.Serializable;
import java.time.LocalDate;
import java.time.Month;

/**
 * Calculates the day count using the US 30/360 adjusted method. The daycount is calculated via
 * 
 *		(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.
 *
 * 
    *
  • * The method {@link #getDaycount(LocalDate, LocalDate) getDaycount} corresponds to the implementation of the "US method" of Excel function DAYS360, i.e., DAYS360(startDate,endDate,FALSE). *
  • *
  • * The method {@link #getDaycountFraction(LocalDate, LocalDate) getDaycountFraction} corresponds to the implementation of the "30U/360 method" of Excel function YEARFRAC, i.e., YEARFRAC(startDate,endDate,0). *
  • *
* * @author Christian Fries * @version 1.0 */ public class DayCountConvention_30U_360 implements DayCountConvention, Serializable { private static final long serialVersionUID = -1362506929067333038L; private boolean isEndOfMonth = true; /** * Create a 30U/360 day count convention. */ public DayCountConvention_30U_360() { } /** * Create a 30U/360 day count convention. * * @param isEndOfMonth If true, an end-of-month day will always count as "30", even if we are in February. */ public DayCountConvention_30U_360(final boolean isEndOfMonth) { this.isEndOfMonth = isEndOfMonth; } /* (non-Javadoc) * @see net.finmath.time.daycount.DayCountConvention#getDaycount(java.time.LocalDate, java.time.LocalDate) */ @Override public double getDaycount(final LocalDate startDate, final LocalDate endDate) { if(startDate.isAfter(endDate)) { return -getDaycount(endDate,startDate); } int startDateDay = startDate.getDayOfMonth(); final int startDateMonth = startDate.getMonthValue(); final int startDateYear = startDate.getYear(); int endDateDay = endDate.getDayOfMonth(); final int endDateMonth = endDate.getMonthValue(); final int endDateYear = endDate.getYear(); if( isEndOfMonth && startDate.getMonth() == Month.FEBRUARY && startDate.getDayOfMonth() == startDate.lengthOfMonth() && endDate.getMonth() == Month.FEBRUARY && endDate.getDayOfMonth() == endDate.lengthOfMonth() ) { endDateDay = 30; } if( isEndOfMonth && startDate.getMonth() == Month.FEBRUARY && startDate.getDayOfMonth() == startDate.lengthOfMonth() ) { startDateDay = 30; } if(endDateDay > 30 && startDateDay >= 30) { endDateDay = 30; } startDateDay = Math.min(startDateDay,30); return (endDateYear - startDateYear) * 360.0 + (endDateMonth - startDateMonth) * 30.0 + (endDateDay - startDateDay); } /* (non-Javadoc) * @see net.finmath.time.daycount.DayCountConvention#getDaycountFraction(java.time.LocalDate, java.time.LocalDate) */ @Override public double getDaycountFraction(final LocalDate startDate, final LocalDate endDate) { return getDaycount(startDate, endDate) / 360.0; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy