| 1 | /* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
| 2 | |
| 3 | /* |
| 4 | Copyright (C) 2007, 2009 StatPro Italia srl |
| 5 | |
| 6 | This file is part of QuantLib, a free-software/open-source library |
| 7 | for financial quantitative analysts and developers - http://quantlib.org/ |
| 8 | |
| 9 | QuantLib is free software: you can redistribute it and/or modify it |
| 10 | under the terms of the QuantLib license. You should have received a |
| 11 | copy of the license along with this program; if not, please email |
| 12 | <quantlib-dev@lists.sf.net>. The license is also available online at |
| 13 | <http://quantlib.org/license.shtml>. |
| 14 | |
| 15 | This program is distributed in the hope that it will be useful, but WITHOUT |
| 16 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
| 17 | FOR A PARTICULAR PURPOSE. See the license for more details. |
| 18 | */ |
| 19 | |
| 20 | #include <ql/instruments/impliedvolatility.hpp> |
| 21 | #include <ql/termstructures/volatility/equityfx/blackconstantvol.hpp> |
| 22 | #include <ql/math/solvers1d/brent.hpp> |
| 23 | |
| 24 | namespace QuantLib { |
| 25 | |
| 26 | namespace { |
| 27 | |
| 28 | class PriceError { |
| 29 | public: |
| 30 | PriceError(const PricingEngine& engine, |
| 31 | SimpleQuote& vol, |
| 32 | Real targetValue); |
| 33 | Real operator()(Volatility x) const; |
| 34 | private: |
| 35 | const PricingEngine& engine_; |
| 36 | SimpleQuote& vol_; |
| 37 | Real targetValue_; |
| 38 | const Instrument::results* results_; |
| 39 | }; |
| 40 | |
| 41 | PriceError::PriceError(const PricingEngine& engine, |
| 42 | SimpleQuote& vol, |
| 43 | Real targetValue) |
| 44 | : engine_(engine), vol_(vol), targetValue_(targetValue) { |
| 45 | results_ = |
| 46 | dynamic_cast<const Instrument::results*>(engine_.getResults()); |
| 47 | QL_REQUIRE(results_ != nullptr, "pricing engine does not supply needed results" ); |
| 48 | } |
| 49 | |
| 50 | Real PriceError::operator()(Volatility x) const { |
| 51 | vol_.setValue(x); |
| 52 | engine_.calculate(); |
| 53 | return results_->value-targetValue_; |
| 54 | } |
| 55 | |
| 56 | } |
| 57 | |
| 58 | |
| 59 | namespace detail { |
| 60 | |
| 61 | Volatility ImpliedVolatilityHelper::calculate( |
| 62 | const Instrument& instrument, |
| 63 | const PricingEngine& engine, |
| 64 | SimpleQuote& volQuote, |
| 65 | Real targetValue, |
| 66 | Real accuracy, |
| 67 | Natural maxEvaluations, |
| 68 | Volatility minVol, |
| 69 | Volatility maxVol) { |
| 70 | |
| 71 | instrument.setupArguments(engine.getArguments()); |
| 72 | engine.getArguments()->validate(); |
| 73 | |
| 74 | PriceError f(engine, volQuote, targetValue); |
| 75 | Brent solver; |
| 76 | solver.setMaxEvaluations(maxEvaluations); |
| 77 | Volatility guess = (minVol+maxVol)/2.0; |
| 78 | Volatility result = solver.solve(f, accuracy, guess, |
| 79 | xMin: minVol, xMax: maxVol); |
| 80 | return result; |
| 81 | } |
| 82 | |
| 83 | ext::shared_ptr<GeneralizedBlackScholesProcess> |
| 84 | ImpliedVolatilityHelper::clone( |
| 85 | const ext::shared_ptr<GeneralizedBlackScholesProcess>& process, |
| 86 | const ext::shared_ptr<SimpleQuote>& volQuote) { |
| 87 | |
| 88 | Handle<Quote> stateVariable = process->stateVariable(); |
| 89 | Handle<YieldTermStructure> dividendYield = process->dividendYield(); |
| 90 | Handle<YieldTermStructure> riskFreeRate = process->riskFreeRate(); |
| 91 | |
| 92 | Handle<BlackVolTermStructure> blackVol = process->blackVolatility(); |
| 93 | Handle<BlackVolTermStructure> volatility( |
| 94 | ext::shared_ptr<BlackVolTermStructure>( |
| 95 | new BlackConstantVol(blackVol->referenceDate(), |
| 96 | blackVol->calendar(), |
| 97 | Handle<Quote>(volQuote), |
| 98 | blackVol->dayCounter()))); |
| 99 | |
| 100 | return ext::make_shared<GeneralizedBlackScholesProcess>( |
| 101 | args&: stateVariable, args&: dividendYield, |
| 102 | args&: riskFreeRate, args&: volatility); |
| 103 | } |
| 104 | |
| 105 | } |
| 106 | |
| 107 | } |
| 108 | |