1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2000, 2001, 2002, 2003 RiskMap srl
Copyright (C) 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
<quantlib-dev@lists.sf.net>. The license is also available online at
<https://www.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.
*/
#include <ql/instruments/oneassetoption.hpp>
#include <ql/exercise.hpp>
#include <ql/event.hpp>
namespace QuantLib {
OneAssetOption::OneAssetOption(
const ext::shared_ptr<Payoff>& payoff,
const ext::shared_ptr<Exercise>& exercise)
: Option(payoff, exercise) {}
bool OneAssetOption::isExpired() const {
return detail::simple_event(exercise_->lastDate()).hasOccurred();
}
Real OneAssetOption::delta() const {
calculate();
QL_REQUIRE(delta_ != Null<Real>(), "delta not provided");
return delta_;
}
Real OneAssetOption::deltaForward() const {
calculate();
QL_REQUIRE(deltaForward_ != Null<Real>(),
"forward delta not provided");
return deltaForward_;
}
Real OneAssetOption::elasticity() const {
calculate();
QL_REQUIRE(elasticity_ != Null<Real>(), "elasticity not provided");
return elasticity_;
}
Real OneAssetOption::gamma() const {
calculate();
QL_REQUIRE(gamma_ != Null<Real>(), "gamma not provided");
return gamma_;
}
Real OneAssetOption::theta() const {
calculate();
QL_REQUIRE(theta_ != Null<Real>(), "theta not provided");
return theta_;
}
Real OneAssetOption::thetaPerDay() const {
calculate();
QL_REQUIRE(thetaPerDay_ != Null<Real>(), "theta per-day not provided");
return thetaPerDay_;
}
Real OneAssetOption::vega() const {
calculate();
QL_REQUIRE(vega_ != Null<Real>(), "vega not provided");
return vega_;
}
Real OneAssetOption::rho() const {
calculate();
QL_REQUIRE(rho_ != Null<Real>(), "rho not provided");
return rho_;
}
Real OneAssetOption::dividendRho() const {
calculate();
QL_REQUIRE(dividendRho_ != Null<Real>(), "dividend rho not provided");
return dividendRho_;
}
Real OneAssetOption::strikeSensitivity() const {
calculate();
QL_REQUIRE(strikeSensitivity_ != Null<Real>(),
"strike sensitivity not provided");
return strikeSensitivity_;
}
Real OneAssetOption::itmCashProbability() const {
calculate();
QL_REQUIRE(itmCashProbability_ != Null<Real>(),
"in-the-money cash probability not provided");
return itmCashProbability_;
}
void OneAssetOption::setupExpired() const {
Option::setupExpired();
delta_ = deltaForward_ = elasticity_ = gamma_ = theta_ =
thetaPerDay_ = vega_ = rho_ = dividendRho_ =
strikeSensitivity_ = itmCashProbability_ = 0.0;
}
void OneAssetOption::fetchResults(const PricingEngine::results* r) const {
Option::fetchResults(r);
const auto* results = dynamic_cast<const Greeks*>(r);
QL_ENSURE(results != nullptr, "no greeks returned from pricing engine");
/* no check on null values - just copy.
this allows:
a) to decide in derived options what to do when null
results are returned (throw? numerical calculation?)
b) to implement slim engines which only calculate the
value---of course care must be taken not to call
the greeks methods when using these.
*/
delta_ = results->delta;
gamma_ = results->gamma;
theta_ = results->theta;
vega_ = results->vega;
rho_ = results->rho;
dividendRho_ = results->dividendRho;
const auto* moreResults = dynamic_cast<const MoreGreeks*>(r);
QL_ENSURE(moreResults != nullptr, "no more greeks returned from pricing engine");
/* no check on null values - just copy.
this allows:
a) to decide in derived options what to do when null
results are returned (throw? numerical calculation?)
b) to implement slim engines which only calculate the
value---of course care must be taken not to call
the greeks methods when using these.
*/
deltaForward_ = moreResults->deltaForward;
elasticity_ = moreResults->elasticity;
thetaPerDay_ = moreResults->thetaPerDay;
strikeSensitivity_ = moreResults->strikeSensitivity;
itmCashProbability_ = moreResults->itmCashProbability;
}
}
|