File: plainoption.cpp

package info (click to toggle)
quantlib 0.2.1.cvs20020322-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 4,716 kB
  • ctags: 4,614
  • sloc: cpp: 19,601; sh: 7,389; makefile: 796; ansic: 22
file content (233 lines) | stat: -rw-r--r-- 8,990 bytes parent folder | download
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233


/*
 Copyright (C) 2000, 2001, 2002 RiskMap 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 ferdinando@ametrano.net
 The license is also available online at http://quantlib.org/html/license.html

 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 plainoption.cpp
    \brief Plain (no dividends, no barriers) option on a single asset

    \fullpath
    ql/Instruments/%plainoption.cpp
*/

// $Id: plainoption.cpp,v 1.11 2002/03/05 16:58:02 lballabio Exp $

#include <ql/Instruments/plainoption.hpp>
#include <ql/Solvers1D/brent.hpp>

namespace QuantLib {

    namespace Instruments {

        PlainOption::PlainOption(Option::Type type,
            const RelinkableHandle<MarketElement>& underlying,
            double strike,
            const RelinkableHandle<TermStructure>& dividendYield,
            const RelinkableHandle<TermStructure>& riskFreeRate,
            const Date& exerciseDate,
            const RelinkableHandle<MarketElement>& volatility,
            const Handle<OptionPricingEngine>& engine,
            const std::string& isinCode, const std::string& description)
        : Option(engine, isinCode, description), type_(type),
          underlying_(underlying), strike_(strike),
          dividendYield_(dividendYield), riskFreeRate_(riskFreeRate),
          exerciseDate_(exerciseDate), volatility_(volatility) {
            registerWith(underlying_);
            registerWith(dividendYield_);
            registerWith(riskFreeRate_);
            registerWith(volatility_);
        }

        double PlainOption::delta() const {
            calculate();
            QL_REQUIRE(delta_ != Null<double>(),
                       "delta calculation failed");
            return delta_;
        }

        double PlainOption::gamma() const {
            calculate();
            QL_REQUIRE(gamma_ != Null<double>(),
                       "gamma calculation failed");
            return gamma_;
        }

        double PlainOption::theta() const {
            calculate();
            QL_REQUIRE(theta_ != Null<double>(),
                       "theta calculation failed");
            return theta_;
        }

        double PlainOption::vega() const {
            calculate();
            QL_REQUIRE(vega_ != Null<double>(),
                       "vega calculation failed");
            return vega_;
        }

        double PlainOption::rho() const {
            calculate();
            QL_REQUIRE(rho_ != Null<double>(),
                       "rho calculation failed");
            return rho_;
        }

        double PlainOption::dividendRho() const {
            calculate();
            QL_REQUIRE(dividendRho_ != Null<double>(),
                       "dividend rho calculation failed");
            return dividendRho_;
        }

        double PlainOption::impliedVolatility(double targetValue,
          double accuracy, Size maxEvaluations,
          double minVol, double maxVol) const {
            double value = NPV(), vol = volatility_->value();
            QL_REQUIRE(!isExpired_, "option expired");
            if (value == targetValue) {
                return vol;
            } else {
                ImpliedVolHelper f(engine_,targetValue);
                Solvers1D::Brent solver;
                solver.setMaxEvaluations(maxEvaluations);
                return solver.solve(f,accuracy,vol,minVol,maxVol);
            }
        }

        void PlainOption::setupEngine() const {
            PlainOptionParameters* parameters =
                dynamic_cast<PlainOptionParameters*>(
                    engine_->parameters());
            QL_REQUIRE(parameters != 0,
                       "pricing engine does not supply needed parameters");

            parameters->type = type_;

            QL_REQUIRE(!underlying_.isNull(), "null underlying price given");
            parameters->underlying = underlying_->value();

            parameters->strike = strike_;

            if (dividendYield_.isNull())
                parameters->dividendYield = 0.0;
            else
                parameters->dividendYield =
                dividendYield_->zeroYield(exerciseDate_);

            QL_REQUIRE(!riskFreeRate_.isNull(), "null risk free rate given");
            parameters->riskFreeRate =
                riskFreeRate_->zeroYield(exerciseDate_);

            parameters->residualTime =
                riskFreeRate_->dayCounter().yearFraction(
                    riskFreeRate_->settlementDate(), exerciseDate_);

            QL_REQUIRE(!volatility_.isNull(), "null volatility given");
            parameters->volatility = volatility_->value();
        }

        void PlainOption::performCalculations() const {
            if (exerciseDate_ <= riskFreeRate_->settlementDate()) {
                isExpired_ = true;
                NPV_ = delta_ = gamma_ = theta_ =
                    vega_ = rho_ = dividendRho_ = 0.0;
            } else {
                isExpired_ = false;
                Option::performCalculations();
                const OptionGreeks* results =
                    dynamic_cast<const OptionGreeks*>(engine_->results());
                QL_ENSURE(results != 0,
                          "no greeks returned from option pricer");
                /* 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;
            }
            QL_ENSURE(isExpired_ || NPV_ != Null<double>(),
                      "null value returned from option pricer");
        }


        PlainOption::ImpliedVolHelper::ImpliedVolHelper(
            const Handle<OptionPricingEngine>& engine, double targetValue)
        : engine_(engine), targetValue_(targetValue) {
            parameters_ = dynamic_cast<PlainOptionParameters*>(
                engine_->parameters());
            QL_REQUIRE(parameters_ != 0,
                       "pricing engine does not supply needed parameters");
            results_ = dynamic_cast<const OptionValue*>(
                engine_->results());
            QL_REQUIRE(results_ != 0,
                       "pricing engine does not supply needed results");
        }

        double PlainOption::ImpliedVolHelper::operator()(double x) const {
            parameters_->volatility = x;
            engine_->calculate();
            return results_->value-targetValue_;
        }

    }

    namespace Pricers {

        Arguments* PlainOptionEngine::parameters() {
            return &parameters_;
        }

        void PlainOptionEngine::validateParameters() const {
            QL_REQUIRE(parameters_.type != Option::Type(-1),
                       "no option type given");
            QL_REQUIRE(parameters_.underlying != Null<double>(),
                       "null underlying given");
            QL_REQUIRE(parameters_.underlying > 0.0,
                       "negative or zero underlying given");
            QL_REQUIRE(parameters_.strike != Null<double>(),
                       "null strike given");
            QL_REQUIRE(parameters_.strike > 0.0,
                       "negative or zero strike given");
            QL_REQUIRE(parameters_.dividendYield != Null<double>(),
                       "null dividend yield given");
            QL_REQUIRE(parameters_.riskFreeRate != Null<double>(),
                       "null risk free rate given");
            QL_REQUIRE(parameters_.residualTime != Null<double>(),
                       "null residual time given");
            QL_REQUIRE(parameters_.residualTime > 0.0,
                       "negative or zero residual time given");
            QL_REQUIRE(parameters_.volatility != Null<double>(),
                       "null volatility given");
            QL_REQUIRE(parameters_.volatility > 0.0,
                       "negative or zero volatility given");
        }

        const Results* PlainOptionEngine::results() const {
            return &results_;
        }

    }

}