/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* Copyright (C) 2001, 2002, 2003 Sadruddin Rejeb Copyright (C) 2006 Cristina Duminuco Copyright (C) 2006 Marco Bianchetti Copyright (C) 2007 StatPro Italia srl 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 #include #include #include namespace QuantLib { Swaption::Swaption(const boost::shared_ptr& swap, const boost::shared_ptr& exercise, const Handle& termStructure, const boost::shared_ptr& engine, Settlement::Type delivery) : Option(boost::shared_ptr(), exercise, engine), swap_(swap), termStructure_(termStructure), settlementType_(delivery) { registerWith(swap_); registerWith(termStructure_); } bool Swaption::isExpired() const { return exercise_->dates().back() < termStructure_->referenceDate(); } void Swaption::setupArguments(PricingEngine::arguments* args) const { swap_->setupArguments(args); Swaption::arguments* arguments = dynamic_cast(args); QL_REQUIRE(arguments != 0, "wrong argument type"); DayCounter counter = termStructure_->dayCounter(); // volatilities are calculated for zero-spreaded swaps. // Therefore, the spread on the floating leg is removed // and a corresponding correction is made on the fixed leg. Spread correction = swap_->spread() * swap_->floatingLegBPS() / swap_->fixedLegBPS(); // the above is the opposite of the needed value since the // two BPSs have opposite sign; hence the + sign below arguments->fixedRate = swap_->fixedRate() + correction; arguments->fairRate = swap_->fairRate() + correction; // this is passed explicitly for precision arguments->fixedBPS = std::fabs(swap_->fixedLegBPS()); arguments->settlementType = settlementType_; Date settlement = termStructure_->referenceDate(); // only if cash settled if (arguments->settlementType==Settlement::Cash) { const Leg& swapFixedLeg = swap_->fixedLeg(); DayCounter dc = (boost::dynamic_pointer_cast( swapFixedLeg[0]))->dayCounter(); arguments->fixedCashBPS = CashFlows::bps(swapFixedLeg, InterestRate(arguments->fairRate, dc, Compounded), settlement) ; } arguments->exercise = exercise_; Size n = exercise_->dates().size(); arguments->stoppingTimes.clear(); arguments->stoppingTimes.reserve(n); for (Size i=0; idates()[i]); arguments->stoppingTimes.push_back(time); } } void Swaption::arguments::validate() const { VanillaSwap::arguments::validate(); QL_REQUIRE(fixedRate != Null(), "fixed swap rate null or not set"); QL_REQUIRE(fairRate != Null(), "fair swap rate null or not set"); QL_REQUIRE(fixedBPS != Null(), "fixed swap BPS null or not set"); if(settlementType == Settlement::Cash) { QL_REQUIRE(fixedCashBPS != Null(), "fixed swap cash BPS null or not set " "for cash-settled swaption"); } } Volatility Swaption::impliedVolatility(Real targetValue, Real accuracy, Size maxEvaluations, Volatility minVol, Volatility maxVol) const { calculate(); QL_REQUIRE(!isExpired(), "instrument expired"); Volatility guess = 0.10; // improve ImpliedVolHelper f(*this,termStructure_,targetValue); Brent solver; solver.setMaxEvaluations(maxEvaluations); return solver.solve(f, accuracy, guess, minVol, maxVol); } Swaption::ImpliedVolHelper::ImpliedVolHelper( const Swaption& swaption, const Handle& termStructure, Real targetValue) : termStructure_(termStructure), targetValue_(targetValue) { vol_ = boost::shared_ptr(new SimpleQuote(0.0)); Handle h(vol_); engine_ = boost::shared_ptr(new BlackSwaptionEngine(h)); swaption.setupArguments(engine_->getArguments()); results_ = dynamic_cast(engine_->getResults()); } Real Swaption::ImpliedVolHelper::operator()(Volatility x) const { vol_->setValue(x); engine_->calculate(); return results_->value-targetValue_; } Rate Swaption::atmRate() const{ return swap_->fairRate(); } }