📄 singleassetoption.hpp
字号:
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2000, 2001, 2002, 2003 RiskMap srl
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
<quantlib-dev@lists.sf.net>. The license is also available online at
<http://quantlib.org/license.shtml>.
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.
*/
/*! \file singleassetoption.hpp
\brief common code for option evaluation
*/
#ifndef BSM_option_pricer_h
#define BSM_option_pricer_h
#include <ql/instruments/payoffs.hpp>
namespace QuantLib {
//! Black-Scholes-Merton option
class SingleAssetOption {
public:
SingleAssetOption(Option::Type type,
Real underlying,
Real strike,
Spread dividendYield,
Rate riskFreeRate,
Time residualTime,
Volatility volatility);
virtual ~SingleAssetOption() {}
// modifiers
virtual void setVolatility(Volatility newVolatility);
virtual void setRiskFreeRate(Rate newRate);
virtual void setDividendYield(Rate newDividendYield);
// accessors
virtual Real value() const = 0;
virtual Real delta() const = 0;
virtual Real gamma() const = 0;
virtual Real theta() const;
virtual Real vega() const;
virtual Real rho() const;
virtual Real dividendRho() const;
/*! \warning Options with a gamma that changes sign have
values that are <b>not</b> monotonic in the
volatility, e.g binary options. In these cases
impliedVolatility can fail and in any case is
meaningless. Another possible source of failure
is to have a targetValue that is not attainable
with any volatility, e.g. a targetValue lower
than the intrinsic value in the case of American
options.
*/
Volatility impliedVolatility(Real targetValue,
Real accuracy = 1e-4,
Size maxEvaluations = 100,
Volatility minVol = 1.0e-7,
Volatility maxVol = 4.0)
const;
Spread impliedDivYield(Real targetValue,
Real accuracy = 1e-4,
Size maxEvaluations = 100,
Spread minYield = 1.0e-7,
Spread maxYield = 4.0) const;
virtual boost::shared_ptr<SingleAssetOption> clone() const = 0;
protected:
Real underlying_;
PlainVanillaPayoff payoff_;
Spread dividendYield_;
Rate riskFreeRate_;
Time residualTime_;
Volatility volatility_;
mutable bool hasBeenCalculated_;
mutable Real rho_, dividendRho_, vega_, theta_;
mutable bool rhoComputed_, dividendRhoComputed_, vegaComputed_,
thetaComputed_;
static const Real dVolMultiplier_;
static const Real dRMultiplier_;
private:
class VolatilityFunction;
friend class VolatilityFunction;
class DivYieldFunction;
friend class DivYieldFunction;
};
class SingleAssetOption::VolatilityFunction {
public:
VolatilityFunction(const boost::shared_ptr<SingleAssetOption>& tempBSM,
Real targetPrice);
Real operator()(Volatility x) const;
private:
mutable boost::shared_ptr<SingleAssetOption> bsm;
Real targetPrice_;
};
class SingleAssetOption::DivYieldFunction {
public:
DivYieldFunction(const boost::shared_ptr<SingleAssetOption>& tempBSM,
Real targetPrice);
Real operator()(Spread x) const;
private:
mutable boost::shared_ptr<SingleAssetOption> bsm;
Real targetPrice_;
};
inline SingleAssetOption::VolatilityFunction::VolatilityFunction(
const boost::shared_ptr<SingleAssetOption>& tempBSM,
Real targetPrice) {
bsm = tempBSM;
targetPrice_ = targetPrice;
}
inline Real
SingleAssetOption::VolatilityFunction::operator()(Volatility x) const {
bsm -> setVolatility(x);
return (bsm -> value() - targetPrice_);
}
inline SingleAssetOption::DivYieldFunction::DivYieldFunction(
const boost::shared_ptr<SingleAssetOption>& tempBSM,
Real targetPrice) {
bsm = tempBSM;
targetPrice_ = targetPrice;
}
inline Real
SingleAssetOption::DivYieldFunction::operator()(Spread x) const {
bsm -> setDividendYield(x);
return (bsm -> value() - targetPrice_);
}
}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -