/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* Copyright (C) 2006 Allen Kuo This file is part of QuantLib, a free-software/open-source library for financial quantitative analysts and developers - http://quantlib.org/ QuantLib is free software: you can redistribute it and/or modify it under the terms of the QuantLib license. You should have received a copy of the license along with this program; if not, please email . The license is also available online at . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the license for more details. */ #include #include #include namespace QuantLib { ForwardRateAgreement::ForwardRateAgreement( const Date& valueDate, const Date& maturityDate, Position::Type type, Rate strikeForwardRate, Real notionalAmount, const boost::shared_ptr& index, const Handle& discountCurve) : Forward(index->dayCounter(), index->fixingCalendar(), index->businessDayConvention(), index->fixingDays(), boost::shared_ptr(), valueDate, maturityDate, discountCurve), fraType_(type), notionalAmount_(notionalAmount), index_(index) { QL_REQUIRE(notionalAmount > 0.0, "notionalAmount must be positive"); // do I adjust this ? // valueDate_ = calendar_.adjust(valueDate_,businessDayConvention_); Date fixingDate = calendar_.advance(valueDate_, -static_cast(settlementDays_), Days); forwardRate_ = InterestRate(index->fixing(fixingDate), index->dayCounter(), Simple, Once); strikeForwardRate_ = InterestRate(strikeForwardRate, index->dayCounter(), Simple, Once); Real strike = notionalAmount_ * strikeForwardRate_.compoundFactor(valueDate_, maturityDate_); payoff_ = boost::shared_ptr(new ForwardTypePayoff(fraType_, strike)); // incomeDiscountCurve_ is irrelevant to an FRA incomeDiscountCurve_ = discountCurve_; // income is irrelevant to FRA - set it to zero underlyingIncome_ = 0.0; registerWith(index_); } Date ForwardRateAgreement::settlementDate() const { return calendar_.advance(Settings::instance().evaluationDate(), settlementDays_, Days); } bool ForwardRateAgreement::isExpired() const { #if defined(QL_TODAYS_PAYMENTS) return valueDate_ < settlementDate(); #else return valueDate_ <= settlementDate(); #endif } Real ForwardRateAgreement::spotIncome( const Handle&) const { return 0.0; } // In theory, no need to implement this for a FRA (could directly // supply a forwardValue). For the sake of keeping a consistent // framework, we adhere to the concept of the forward contract as // defined in the base class, with an underlying having a // spotPrice (in this case, a loan or deposit with an NPV). Thus, // spotValue() is defined here. Real ForwardRateAgreement::spotValue() const { calculate(); return notionalAmount_ * forwardRate().compoundFactor(valueDate_, maturityDate_) * discountCurve_->discount(maturityDate_); } InterestRate ForwardRateAgreement::forwardRate() const { calculate(); return forwardRate_; } void ForwardRateAgreement::performCalculations() const { Date fixingDate = calendar_.advance(valueDate_, -static_cast(settlementDays_), Days); forwardRate_ = InterestRate(index_->fixing(fixingDate), index_->dayCounter(), Simple, Once); underlyingSpotValue_ = spotValue(); underlyingIncome_ = 0.0; Forward::performCalculations(); } }