File: swaptionvolatilitymatrix.cpp

package info (click to toggle)
quantlib 1.39-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 41,264 kB
  • sloc: cpp: 396,561; makefile: 6,539; python: 272; sh: 154; lisp: 86
file content (364 lines) | stat: -rw-r--r-- 18,288 bytes parent folder | download | duplicates (2)
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */

/*
 Copyright (C) 2006, 2008 Ferdinando Ametrano
 Copyright (C) 2006 François du Vignaud
 Copyright (C) 2007 Cristina Duminuco

 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.
*/

#include "toplevelfixture.hpp"
#include "swaptionvolstructuresutilities.hpp"
#include "utilities.hpp"
#include <ql/utilities/dataformatters.hpp>
#include <ql/indexes/swap/euriborswap.hpp>
#include <ql/instruments/makeswaption.hpp>
#include <ql/pricingengines/swaption/blackswaptionengine.hpp>
#include <ql/termstructures/yield/flatforward.hpp>
#include <ql/math/comparison.hpp>
#include <string>

using namespace QuantLib;
using namespace boost::unit_test_framework;

BOOST_FIXTURE_TEST_SUITE(QuantLibTests, TopLevelFixture)

BOOST_AUTO_TEST_SUITE(SwaptionVolatilityMatrixTests)

struct CommonVars {
    // global data
    Date referenceDate;
    SwaptionMarketConventions conventions;
    AtmVolatility atm;
    RelinkableHandle<YieldTermStructure> termStructure;
    RelinkableHandle<SwaptionVolatilityStructure> atmVolMatrix;
    Real tolerance;

    // setup
    CommonVars() {
        conventions.setConventions();
        atm.setMarketData();
        Settings::instance().evaluationDate() =
            conventions.calendar.adjust(Date::todaysDate());
        atmVolMatrix = RelinkableHandle<SwaptionVolatilityStructure>(
                ext::shared_ptr<SwaptionVolatilityStructure>(new
                    SwaptionVolatilityMatrix(conventions.calendar,
                                             conventions.optionBdc,
                                             atm.tenors.options,
                                             atm.tenors.swaps,
                                             atm.volsHandle,
                                             conventions.dayCounter)));
        termStructure.linkTo(
                ext::shared_ptr<YieldTermStructure>(new
                    FlatForward(0, conventions.calendar,
                                0.05, Actual365Fixed())));
    }

    // utilities
    void makeObservabilityTest(
                               const std::string& description,
                               const ext::shared_ptr<SwaptionVolatilityStructure>& vol,
                               bool mktDataFloating,
                               bool referenceDateFloating) {
        Rate dummyStrike = .02;
        Date referenceDate = Settings::instance().evaluationDate();
        Volatility initialVol = vol->volatility(
                        referenceDate + atm.tenors.options[0],
                        atm.tenors.swaps[0], dummyStrike, false);
        // testing evaluation date change ...
        Settings::instance().evaluationDate() =
            referenceDate - Period(1, Years);
        Volatility newVol =  vol->volatility(
                        referenceDate + atm.tenors.options[0],
                        atm.tenors.swaps[0], dummyStrike, false);
        Settings::instance().evaluationDate() = referenceDate;
        if (referenceDateFloating && (initialVol == newVol))
            BOOST_ERROR(description <<
                        " the volatility should change when the reference date is changed !");
        if (!referenceDateFloating && (initialVol != newVol))
            BOOST_ERROR(description <<
                        " the volatility should not change when the reference date is changed !");

        // test market data change...
        if (mktDataFloating){
            Volatility initialVolatility = atm.volsHandle[0][0]->value();
            ext::dynamic_pointer_cast<SimpleQuote>(
                              atm.volsHandle[0][0].currentLink())->setValue(10);
            newVol = vol->volatility(
                    referenceDate + atm.tenors.options[0],
                    atm.tenors.swaps[0], dummyStrike, false);
            ext::dynamic_pointer_cast<SimpleQuote>(
                    atm.volsHandle[0][0].currentLink())
                    ->setValue(initialVolatility);
            if (initialVol == newVol)
                BOOST_ERROR(description << " the volatility should change when"
                            " the market data is changed !");
        }
    }

    void makeCoherenceTest(
                           const std::string& description,
                           const ext::shared_ptr<SwaptionVolatilityDiscrete>& vol) {

        for (Size i=0; i<atm.tenors.options.size(); ++i) {
            Date optionDate =
                vol->optionDateFromTenor(atm.tenors.options[i]);
            if (optionDate!=vol->optionDates()[i])
                BOOST_FAIL("optionDateFromTenor failure for " <<
                           description << ":"
                           "\n       option tenor: " << atm.tenors.options[i] <<
                           "\nactual option date : " << optionDate <<
                           "\n  exp. option date : " << vol->optionDates()[i]);
            Time optionTime = vol->timeFromReference(optionDate);
            if (!close(optionTime,vol->optionTimes()[i]))
                BOOST_FAIL("timeFromReference failure for " <<
                           description << ":"
                           "\n       option tenor: " << atm.tenors.options[i] <<
                           "\n       option date : " << optionDate <<
                           "\nactual option time : " << optionTime <<
                           "\n  exp. option time : " << vol->optionTimes()[i]);
        }

        ext::shared_ptr<BlackSwaptionEngine> engine(new
                BlackSwaptionEngine(termStructure,
                                    Handle<SwaptionVolatilityStructure>(vol)));

        for (Size j=0; j<atm.tenors.swaps.size(); j++) {
            Time swapLength = vol->swapLength(atm.tenors.swaps[j]);
            if (!close(swapLength,years(atm.tenors.swaps[j])))
                BOOST_FAIL("convertSwapTenor failure for " <<
                           description << ":"
                           "\n        swap tenor : " << atm.tenors.swaps[j] <<
                           "\n actual swap length: " << swapLength <<
                           "\n   exp. swap length: " << years(atm.tenors.swaps[j]));

            ext::shared_ptr<SwapIndex> swapIndex(new
                    EuriborSwapIsdaFixA(atm.tenors.swaps[j], termStructure));

            for (Size i=0; i<atm.tenors.options.size(); ++i) {
                Real error, tolerance = 1.0e-16;
                Volatility actVol, expVol = atm.vols[i][j];

                actVol = vol->volatility(atm.tenors.options[i],
                                         atm.tenors.swaps[j], 0.05, true);
                error = std::abs(expVol-actVol);
                if (error>tolerance)
                    BOOST_FAIL("recovery of atm vols failed for " <<
                               description << ":"
                               "\noption tenor = " << atm.tenors.options[i] <<
                               "\n swap length = " << atm.tenors.swaps[j] <<
                               "\nexpected vol = " << io::volatility(expVol) <<
                               "\n  actual vol = " << io::volatility(actVol) <<
                               "\n       error = " << io::volatility(error) <<
                               "\n   tolerance = " << tolerance);

                Date optionDate =
                    vol->optionDateFromTenor(atm.tenors.options[i]);
                actVol = vol->volatility(optionDate,
                                         atm.tenors.swaps[j], 0.05, true);
                error = std::abs(expVol-actVol);
                if (error>tolerance)
                    BOOST_FAIL(
                               "recovery of atm vols failed for " <<
                               description << ":"
                               "\noption tenor: " << atm.tenors.options[i] <<
                               "\noption date : " << optionDate <<
                               "\n  swap tenor: " << atm.tenors.swaps[j] <<
                               "\n   exp. vol: " << io::volatility(expVol) <<
                               "\n actual vol: " << io::volatility(actVol) <<
                               "\n      error: " << io::volatility(error) <<
                               "\n  tolerance: " << tolerance);

                Time optionTime = vol->timeFromReference(optionDate);
                actVol = vol->volatility(optionTime, swapLength,
                                         0.05, true);
                error = std::abs(expVol-actVol);
                if (error>tolerance)
                    BOOST_FAIL("recovery of atm vols failed for " <<
                               description << ":"
                               "\noption tenor: " << atm.tenors.options[i] <<
                               "\noption time : " << optionTime <<
                               "\n  swap tenor: " << atm.tenors.swaps[j] <<
                               "\n swap length: " << swapLength <<
                               "\n    exp. vol: " << io::volatility(expVol) <<
                               "\n  actual vol: " << io::volatility(actVol) <<
                               "\n       error: " << io::volatility(error) <<
                               "\n   tolerance: " << tolerance);

                // ATM swaption
                Swaption swaption =
                    MakeSwaption(swapIndex, atm.tenors.options[i])
                    .withPricingEngine(engine);

                Date exerciseDate = swaption.exercise()->dates().front();
                if (exerciseDate!=vol->optionDates()[i])
                    BOOST_FAIL("\noptionDateFromTenor mismatch for " <<
                               description << ":"
                               "\n      option tenor: " << atm.tenors.options[i] <<
                               "\nactual option date: " << exerciseDate <<
                               "\n  exp. option date: " << vol->optionDates()[i]);

                Date start = swaption.underlying()->startDate();
                Date end = swaption.underlying()->maturityDate();
                Time swapLength2 = vol->swapLength(start, end);
                if (!close(swapLength2,swapLength))
                    BOOST_FAIL("\nswapLength failure for " <<
                               description << ":"
                               "\n   exp. swap length: " << swapLength <<
                               "\n actual swap length: " << swapLength2 <<
                               "\n        swap tenor : " << atm.tenors.swaps[j] <<
                               "\n  swap index tenor : " << swapIndex->tenor() <<
                               "\n        option date: " << exerciseDate <<
                               "\n         start date: " << start <<
                               "\n      maturity date: " << end
                               );

                Real npv = swaption.NPV();
                actVol = swaption.impliedVolatility(npv, termStructure,
                                                    expVol*0.98, 1e-6,
                                                    100, 10.0e-7, 4.0,
                                                    ShiftedLognormal, 0.0);
                error = std::abs(expVol-actVol);
                Real tolerance2 = 0.000001;
                if (error>tolerance2)
                    BOOST_FAIL("recovery of atm vols through BlackSwaptionEngine failed for " <<
                               description << ":"
                               "\noption tenor: " << atm.tenors.options[i] <<
                               "\noption time : " << optionTime <<
                               "\n  swap tenor: " << atm.tenors.swaps[j] <<
                               "\n swap length: " << swapLength <<
                               "\n   exp. vol: " << io::volatility(expVol) <<
                               "\n actual vol: " << io::volatility(actVol) <<
                               "\n      error: " << io::volatility(error) <<
                               "\n  tolerance: " << tolerance2);
            }
        }
    }
};


BOOST_AUTO_TEST_CASE(testSwaptionVolMatrixObservability) {

    BOOST_TEST_MESSAGE("Testing swaption volatility matrix observability...");

    CommonVars vars;

    ext::shared_ptr<SwaptionVolatilityMatrix> vol;
    std::string description;

    //floating reference date, floating market data
    description = "floating reference date, floating market data";
    vol = ext::make_shared<SwaptionVolatilityMatrix>(vars.conventions.calendar,
                                 vars.conventions.optionBdc,
                                 vars.atm.tenors.options,
                                 vars.atm.tenors.swaps,
                                 vars.atm.volsHandle,
                                 vars.conventions.dayCounter);
    vars.makeObservabilityTest(description, vol, true, true);

    //fixed reference date, floating market data
    description = "fixed reference date, floating market data";
    vol = ext::make_shared<SwaptionVolatilityMatrix>(Settings::instance().evaluationDate(),
                                 vars.conventions.calendar,
                                 vars.conventions.optionBdc,
                                 vars.atm.tenors.options,
                                 vars.atm.tenors.swaps,
                                 vars.atm.volsHandle,
                                 vars.conventions.dayCounter);
    vars.makeObservabilityTest(description, vol, true, false);

    // floating reference date, fixed market data
    description = "floating reference date, fixed market data";
    vol = ext::make_shared<SwaptionVolatilityMatrix>(vars.conventions.calendar,
                                 vars.conventions.optionBdc,
                                 vars.atm.tenors.options,
                                 vars.atm.tenors.swaps,
                                 vars.atm.volsHandle,
                                 vars.conventions.dayCounter);
    vars.makeObservabilityTest(description, vol, false, true);

    // fixed reference date, fixed market data
    description = "fixed reference date, fixed market data";
    vol = ext::make_shared<SwaptionVolatilityMatrix>(Settings::instance().evaluationDate(),
                                 vars.conventions.calendar,
                                 vars.conventions.optionBdc,
                                 vars.atm.tenors.options,
                                 vars.atm.tenors.swaps,
                                 vars.atm.volsHandle,
                                 vars.conventions.dayCounter);
    vars.makeObservabilityTest(description, vol, false, false);

   // fixed reference date and fixed market data, option dates
        //SwaptionVolatilityMatrix(const Date& referenceDate,
        //                         const std::vector<Date>& exerciseDates,
        //                         const std::vector<Period>& swapTenors,
        //                         const Matrix& volatilities,
        //                         const DayCounter& dayCounter);
}

BOOST_AUTO_TEST_CASE(testSwaptionVolMatrixCoherence) {

    BOOST_TEST_MESSAGE("Testing swaption volatility matrix...");

    CommonVars vars;

    ext::shared_ptr<SwaptionVolatilityMatrix> vol;
    std::string description;

    //floating reference date, floating market data
    description = "floating reference date, floating market data";
    vol = ext::make_shared<SwaptionVolatilityMatrix>(vars.conventions.calendar,
                                 vars.conventions.optionBdc,
                                 vars.atm.tenors.options,
                                 vars.atm.tenors.swaps,
                                 vars.atm.volsHandle,
                                 vars.conventions.dayCounter);
    vars.makeCoherenceTest(description, vol);

    //fixed reference date, floating market data
    description = "fixed reference date, floating market data";
    vol = ext::make_shared<SwaptionVolatilityMatrix>(Settings::instance().evaluationDate(),
                                 vars.conventions.calendar,
                                 vars.conventions.optionBdc,
                                 vars.atm.tenors.options,
                                 vars.atm.tenors.swaps,
                                 vars.atm.volsHandle,
                                 vars.conventions.dayCounter);
    vars.makeCoherenceTest(description, vol);

    // floating reference date, fixed market data
    description = "floating reference date, fixed market data";
    vol = ext::make_shared<SwaptionVolatilityMatrix>(vars.conventions.calendar,
                                 vars.conventions.optionBdc,
                                 vars.atm.tenors.options,
                                 vars.atm.tenors.swaps,
                                 vars.atm.volsHandle,
                                 vars.conventions.dayCounter);
    vars.makeCoherenceTest(description, vol);

    // fixed reference date, fixed market data
    description = "fixed reference date, fixed market data";
    vol = ext::make_shared<SwaptionVolatilityMatrix>(Settings::instance().evaluationDate(),
                                 vars.conventions.calendar,
                                 vars.conventions.optionBdc,
                                 vars.atm.tenors.options,
                                 vars.atm.tenors.swaps,
                                 vars.atm.volsHandle,
                                 vars.conventions.dayCounter);
    vars.makeCoherenceTest(description, vol);
}
BOOST_AUTO_TEST_SUITE_END()

BOOST_AUTO_TEST_SUITE_END()