QuantLib: a free/open-source library for quantitative finance
Fully annotated sources - version 1.32
Loading...
Searching...
No Matches
floatfloatswaption.hpp
1/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
3/*
4 Copyright (C) 2013, 2018 Peter Caspers
5
6 This file is part of QuantLib, a free-software/open-source library
7 for financial quantitative analysts and developers - http://quantlib.org/
8
9 QuantLib is free software: you can redistribute it and/or modify it
10 under the terms of the QuantLib license. You should have received a
11 copy of the license along with this program; if not, please email
12 <quantlib-dev@lists.sf.net>. The license is also available online at
13 <http://quantlib.org/license.shtml>.
14
15 This program is distributed in the hope that it will be useful, but WITHOUT
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17 FOR A PARTICULAR PURPOSE. See the license for more details.
18*/
19
24#ifndef quantlib_instruments_floatfloatswaption_hpp
25#define quantlib_instruments_floatfloatswaption_hpp
26
27#include <ql/instruments/swaption.hpp>
28#include <ql/instruments/floatfloatswap.hpp>
29#include <ql/pricingengines/swaption/basketgeneratingengine.hpp>
30#include <ql/termstructures/yieldtermstructure.hpp>
31#include <ql/termstructures/volatility/swaption/swaptionvolstructure.hpp>
32#include <ql/models/calibrationhelper.hpp>
33
34namespace QuantLib {
35
37
40 class FloatFloatSwaption : public Option {
41 public:
42 class arguments;
43 class engine;
44 FloatFloatSwaption(ext::shared_ptr<FloatFloatSwap> swap,
45 const ext::shared_ptr<Exercise>& exercise,
49
50 bool isExpired() const override;
51 void setupArguments(PricingEngine::arguments*) const override;
53
57 return settlementMethod_;
58 }
59 Swap::Type type() const { return swap_->type(); }
60 const ext::shared_ptr<FloatFloatSwap> &underlyingSwap() const {
61 return swap_;
62 }
64 std::vector<ext::shared_ptr<BlackCalibrationHelper>>
65 calibrationBasket(const ext::shared_ptr<SwapIndex>& standardSwapBase,
66 const ext::shared_ptr<SwaptionVolatilityStructure>& swaptionVolatility,
69
70 private:
71 // arguments
72 ext::shared_ptr<FloatFloatSwap> swap_;
75 };
76
79 public Option::arguments {
80 public:
81 arguments() = default;
82 ext::shared_ptr<FloatFloatSwap> swap;
85 void validate() const override;
86 };
87
90 : public GenericEngine<FloatFloatSwaption::arguments,
91 FloatFloatSwaption::results> {};
92}
93
94#endif
Arguments for float float swap calculation
Arguments for cms swaption calculation
ext::shared_ptr< FloatFloatSwap > swap
base class for cms swaption engines
floatfloat swaption class
const ext::shared_ptr< FloatFloatSwap > & underlyingSwap() const
void setupArguments(PricingEngine::arguments *) const override
Settlement::Type settlementType() const
bool isExpired() const override
returns whether the instrument might have value greater than zero.
std::vector< ext::shared_ptr< BlackCalibrationHelper > > calibrationBasket(const ext::shared_ptr< SwapIndex > &standardSwapBase, const ext::shared_ptr< SwaptionVolatilityStructure > &swaptionVolatility, BasketGeneratingEngine::CalibrationBasketType basketType=BasketGeneratingEngine::MaturityStrikeByDeltaGamma) const
ext::shared_ptr< FloatFloatSwap > swap_
Settlement::Method settlementMethod_
Settlement::Method settlementMethod() const
template base class for option pricing engines
basic option arguments
Definition: option.hpp:57
base option class
Definition: option.hpp:36
ext::shared_ptr< Exercise > exercise() const
Definition: option.hpp:46
Definition: any.hpp:35
void swap(Array &v, Array &w) noexcept
Definition: array.hpp:903