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
|
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2013, 2016 Peter Caspers
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 nonstandardswap.hpp
\brief vanilla swap but possibly with period dependent nominal and strike
*/
#ifndef quantlib_nonstandard_swap_hpp
#define quantlib_nonstandard_swap_hpp
#include <ql/instruments/swap.hpp>
#include <ql/instruments/vanillaswap.hpp>
#include <ql/time/daycounter.hpp>
#include <ql/time/schedule.hpp>
#include <boost/optional.hpp>
namespace QuantLib {
class IborIndex;
class SwapIndex;
//! nonstandard swap
class NonstandardSwap : public Swap {
public:
class arguments;
class results;
class engine;
NonstandardSwap(const VanillaSwap &fromVanilla);
NonstandardSwap(Swap::Type type,
std::vector<Real> fixedNominal,
const std::vector<Real>& floatingNominal,
Schedule fixedSchedule,
std::vector<Real> fixedRate,
DayCounter fixedDayCount,
Schedule floatingSchedule,
ext::shared_ptr<IborIndex> iborIndex,
Real gearing,
Spread spread,
DayCounter floatingDayCount,
bool intermediateCapitalExchange = false,
bool finalCapitalExchange = false,
boost::optional<BusinessDayConvention> paymentConvention = boost::none);
NonstandardSwap(Swap::Type type,
std::vector<Real> fixedNominal,
std::vector<Real> floatingNominal,
Schedule fixedSchedule,
std::vector<Real> fixedRate,
DayCounter fixedDayCount,
Schedule floatingSchedule,
ext::shared_ptr<IborIndex> iborIndex,
std::vector<Real> gearing,
std::vector<Spread> spread,
DayCounter floatingDayCount,
bool intermediateCapitalExchange = false,
bool finalCapitalExchange = false,
boost::optional<BusinessDayConvention> paymentConvention = boost::none);
//! \name Inspectors
//@{
Swap::Type type() const;
const std::vector<Real> &fixedNominal() const;
const std::vector<Real> &floatingNominal() const;
const Schedule &fixedSchedule() const;
const std::vector<Real> &fixedRate() const;
const DayCounter &fixedDayCount() const;
const Schedule &floatingSchedule() const;
const ext::shared_ptr<IborIndex> &iborIndex() const;
Spread spread() const;
Real gearing() const;
const std::vector<Spread>& spreads() const;
const std::vector<Real>& gearings() const;
const DayCounter &floatingDayCount() const;
BusinessDayConvention paymentConvention() const;
const Leg &fixedLeg() const;
const Leg &floatingLeg() const;
//@}
//! \name Results
//@{
//@}
// other
void setupArguments(PricingEngine::arguments* args) const override;
void fetchResults(const PricingEngine::results*) const override;
private:
void init();
void setupExpired() const override;
Swap::Type type_;
std::vector<Real> fixedNominal_, floatingNominal_;
Schedule fixedSchedule_;
std::vector<Real> fixedRate_;
DayCounter fixedDayCount_;
Schedule floatingSchedule_;
ext::shared_ptr<IborIndex> iborIndex_;
std::vector<Spread> spread_;
std::vector<Real> gearing_;
bool singleSpreadAndGearing_;
DayCounter floatingDayCount_;
BusinessDayConvention paymentConvention_;
const bool intermediateCapitalExchange_;
const bool finalCapitalExchange_;
// results
};
//! %Arguments for nonstandard swap calculation
class NonstandardSwap::arguments : public Swap::arguments {
public:
arguments() = default;
Swap::Type type = Swap::Receiver;
std::vector<Real> fixedNominal, floatingNominal;
std::vector<Date> fixedResetDates;
std::vector<Date> fixedPayDates;
std::vector<Time> floatingAccrualTimes;
std::vector<Date> floatingResetDates;
std::vector<Date> floatingFixingDates;
std::vector<Date> floatingPayDates;
std::vector<Real> fixedCoupons;
std::vector<Real> fixedRate;
std::vector<Spread> floatingSpreads;
std::vector<Real> floatingGearings;
std::vector<Real> floatingCoupons;
ext::shared_ptr<IborIndex> iborIndex;
std::vector<bool> fixedIsRedemptionFlow;
std::vector<bool> floatingIsRedemptionFlow;
void validate() const override;
};
//! %Results from nonstandard swap calculation
class NonstandardSwap::results : public Swap::results {
public:
void reset() override;
};
class NonstandardSwap::engine
: public GenericEngine<NonstandardSwap::arguments,
NonstandardSwap::results> {};
// inline definitions
inline Swap::Type NonstandardSwap::type() const { return type_; }
inline const std::vector<Real> &NonstandardSwap::fixedNominal() const {
return fixedNominal_;
}
inline const std::vector<Real> &NonstandardSwap::floatingNominal() const {
return floatingNominal_;
}
inline const Schedule &NonstandardSwap::fixedSchedule() const {
return fixedSchedule_;
}
inline const std::vector<Real> &NonstandardSwap::fixedRate() const {
return fixedRate_;
}
inline const DayCounter &NonstandardSwap::fixedDayCount() const {
return fixedDayCount_;
}
inline const Schedule &NonstandardSwap::floatingSchedule() const {
return floatingSchedule_;
}
inline const ext::shared_ptr<IborIndex> &
NonstandardSwap::iborIndex() const {
return iborIndex_;
}
inline Spread NonstandardSwap::spread() const {
QL_REQUIRE(singleSpreadAndGearing_,
"spread is a vector, use spreads inspector instead");
return spread_.front();
}
inline Real NonstandardSwap::gearing() const {
QL_REQUIRE(singleSpreadAndGearing_,
"gearing is a vector, use gearings inspector instead");
return gearing_.front();
}
inline const std::vector<Spread> &NonstandardSwap::spreads() const {
return spread_;
}
inline const std::vector<Real> &NonstandardSwap::gearings() const {
return gearing_;
}
inline const DayCounter &NonstandardSwap::floatingDayCount() const {
return floatingDayCount_;
}
inline BusinessDayConvention NonstandardSwap::paymentConvention() const {
return paymentConvention_;
}
inline const Leg &NonstandardSwap::fixedLeg() const { return legs_[0]; }
inline const Leg &NonstandardSwap::floatingLeg() const { return legs_[1]; }
}
#endif
|