Examples of DayCounter


Examples of org.jquantlib.daycounters.DayCounter

     * Calculate the reference date based on the global evaluation date
     */
    public BlackVolatilityTermStructure(
            /*@Natural*/ final int settlementDays,
            final Calendar cal) {
        super(settlementDays, cal, BusinessDayConvention.Following, new DayCounter());
    }
View Full Code Here

Examples of org.jquantlib.daycounters.DayCounter

     */
    public BlackVolatilityTermStructure(
            /*@Natural*/ final int settlementDays,
            final Calendar cal,
            final BusinessDayConvention bdc) {
        super(settlementDays, cal, bdc, new DayCounter());
    }
View Full Code Here

Examples of org.jquantlib.daycounters.DayCounter

     * @warning term structures initialized by means of this
     *          constructor must manage their own reference date
     *          by overriding the referenceDate() method.
     */
    public BlackVarianceTermStructure() {
        this(new Calendar(), BusinessDayConvention.Following, new DayCounter());
    }
View Full Code Here

Examples of org.jquantlib.daycounters.DayCounter

     * @warning term structures initialized by means of this
     *          constructor must manage their own reference date
     *          by overriding the referenceDate() method.
     */
    public BlackVarianceTermStructure(final Calendar cal) {
        this(cal, BusinessDayConvention.Following, new DayCounter());
    }
View Full Code Here

Examples of org.jquantlib.daycounters.DayCounter

     *          by overriding the referenceDate() method.
     */
    public BlackVarianceTermStructure(
            final Calendar cal,
            final BusinessDayConvention bdc) {
        this(cal, bdc, new DayCounter());
    }
View Full Code Here

Examples of org.jquantlib.daycounters.DayCounter

    /**
     *  initialize with a fixed reference date
     */
    public BlackVarianceTermStructure(final Date referenceDate) {
        this(referenceDate, new Calendar(), BusinessDayConvention.Following, new DayCounter());
    }
View Full Code Here

Examples of org.jquantlib.daycounters.DayCounter

     *  initialize with a fixed reference date
     */
    public BlackVarianceTermStructure(
            final Date referenceDate,
            final Calendar cal) {
        this(referenceDate, cal, BusinessDayConvention.Following, new DayCounter());
    }
View Full Code Here

Examples of org.jquantlib.daycounters.DayCounter

     */
    public BlackVarianceTermStructure(
            final Date referenceDate,
            final Calendar cal,
            final BusinessDayConvention bdc) {
        this(referenceDate, cal, bdc, new DayCounter());
    }
View Full Code Here

Examples of org.jquantlib.daycounters.DayCounter

     * calculate the reference date based on the global evaluation date
     */
    public BlackVarianceTermStructure(
            /*@Natural*/ final int settlementDays,
            final Calendar cal) {
        this(settlementDays, cal, BusinessDayConvention.Following, new DayCounter());
    }
View Full Code Here

Examples of org.jquantlib.daycounters.DayCounter

     */
    public BlackVarianceTermStructure(
            /*@Natural*/ final int settlementDays,
            final Calendar cal,
            final BusinessDayConvention bdc) {
        this(settlementDays, cal, bdc, new DayCounter());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.