/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* Copyright (C) 2002, 2003 Ferdinando Ametrano 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 namespace QuantLib { QuantoVanillaOption::QuantoVanillaOption( const Handle& foreignRiskFreeTS, const Handle& exchRateVolTS, const Handle& correlation, const boost::shared_ptr& process, const boost::shared_ptr& payoff, const boost::shared_ptr& exercise, const boost::shared_ptr& engine) : VanillaOption(process, payoff, exercise, engine), foreignRiskFreeTS_(foreignRiskFreeTS), exchRateVolTS_(exchRateVolTS), correlation_(correlation) { QL_REQUIRE(engine, "null engine or wrong engine type"); registerWith(foreignRiskFreeTS_); registerWith(exchRateVolTS_); registerWith(correlation_); } Real QuantoVanillaOption::qvega() const { calculate(); QL_REQUIRE(qvega_ != Null(), "exchange rate vega calculation failed"); return qvega_; } Real QuantoVanillaOption::qrho() const { calculate(); QL_REQUIRE(qrho_ != Null(), "foreign interest rate rho calculation failed"); return qrho_; } Real QuantoVanillaOption::qlambda() const { calculate(); QL_REQUIRE(qlambda_ != Null(), "quanto correlation sensitivity calculation failed"); return qlambda_; } void QuantoVanillaOption::setupExpired() const { VanillaOption::setupExpired(); qvega_ = qrho_ = qlambda_ = 0.0; } void QuantoVanillaOption::setupArguments( PricingEngine::arguments* args) const { VanillaOption::setupArguments(args); QuantoVanillaOption::arguments* arguments = dynamic_cast(args); QL_REQUIRE(arguments != 0, "wrong argument type"); arguments->foreignRiskFreeTS = foreignRiskFreeTS_; arguments->exchRateVolTS = exchRateVolTS_; QL_REQUIRE(!correlation_.empty(), "null correlation given"); arguments->correlation = correlation_->value(); } void QuantoVanillaOption::fetchResults( const PricingEngine::results* r) const { VanillaOption::fetchResults(r); const QuantoVanillaOption::results* quantoResults = dynamic_cast(r); QL_ENSURE(quantoResults != 0, "no quanto results returned from pricing engine"); qrho_ = quantoResults->qrho; qvega_ = quantoResults->qvega; qlambda_ = quantoResults->qlambda; } }