/usr/include/ql/instruments/vanillaswap.hpp is in libquantlib0-dev 1.12-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2000, 2001, 2002, 2003 RiskMap srl
Copyright (C) 2003, 2004, 2005, 2006, 2007 StatPro Italia srl
Copyright (C) 2006, 2008 Ferdinando Ametrano
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 vanillaswap.hpp
\brief Simple fixed-rate vs Libor swap
*/
#ifndef quantlib_vanilla_swap_hpp
#define quantlib_vanilla_swap_hpp
#include <ql/instruments/swap.hpp>
#include <ql/time/daycounter.hpp>
#include <ql/time/schedule.hpp>
#include <boost/optional.hpp>
namespace QuantLib {
class IborIndex;
//! Plain-vanilla swap: fix vs floating leg
/*! \ingroup instruments
If no payment convention is passed, the convention of the
floating-rate schedule is used.
\warning if <tt>Settings::includeReferenceDateCashFlows()</tt>
is set to <tt>true</tt>, payments occurring at the
settlement date of the swap might be included in the
NPV and therefore affect the fair-rate and
fair-spread calculation. This might not be what you
want.
\test
- the correctness of the returned value is tested by checking
that the price of a swap paying the fair fixed rate is null.
- the correctness of the returned value is tested by checking
that the price of a swap receiving the fair floating-rate
spread is null.
- the correctness of the returned value is tested by checking
that the price of a swap decreases with the paid fixed rate.
- the correctness of the returned value is tested by checking
that the price of a swap increases with the received
floating-rate spread.
- the correctness of the returned value is tested by checking
it against a known good value.
*/
class VanillaSwap : public Swap {
public:
enum Type { Receiver = -1, Payer = 1 };
class arguments;
class results;
class engine;
VanillaSwap(
Type type,
Real nominal,
const Schedule& fixedSchedule,
Rate fixedRate,
const DayCounter& fixedDayCount,
const Schedule& floatSchedule,
const boost::shared_ptr<IborIndex>& iborIndex,
Spread spread,
const DayCounter& floatingDayCount,
boost::optional<BusinessDayConvention> paymentConvention =
boost::none);
//! \name Inspectors
//@{
Type type() const;
Real nominal() const;
const Schedule& fixedSchedule() const;
Rate fixedRate() const;
const DayCounter& fixedDayCount() const;
const Schedule& floatingSchedule() const;
const boost::shared_ptr<IborIndex>& iborIndex() const;
Spread spread() const;
const DayCounter& floatingDayCount() const;
BusinessDayConvention paymentConvention() const;
const Leg& fixedLeg() const;
const Leg& floatingLeg() const;
//@}
//! \name Results
//@{
Real fixedLegBPS() const;
Real fixedLegNPV() const;
Rate fairRate() const;
Real floatingLegBPS() const;
Real floatingLegNPV() const;
Spread fairSpread() const;
//@}
// other
void setupArguments(PricingEngine::arguments* args) const;
void fetchResults(const PricingEngine::results*) const;
private:
void setupExpired() const;
Type type_;
Real nominal_;
Schedule fixedSchedule_;
Rate fixedRate_;
DayCounter fixedDayCount_;
Schedule floatingSchedule_;
boost::shared_ptr<IborIndex> iborIndex_;
Spread spread_;
DayCounter floatingDayCount_;
BusinessDayConvention paymentConvention_;
// results
mutable Rate fairRate_;
mutable Spread fairSpread_;
};
//! %Arguments for simple swap calculation
class VanillaSwap::arguments : public Swap::arguments {
public:
arguments() : type(Receiver),
nominal(Null<Real>()) {}
Type type;
Real nominal;
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<Spread> floatingSpreads;
std::vector<Real> floatingCoupons;
void validate() const;
};
//! %Results from simple swap calculation
class VanillaSwap::results : public Swap::results {
public:
Rate fairRate;
Spread fairSpread;
void reset();
};
class VanillaSwap::engine : public GenericEngine<VanillaSwap::arguments,
VanillaSwap::results> {};
// inline definitions
inline VanillaSwap::Type VanillaSwap::type() const {
return type_;
}
inline Real VanillaSwap::nominal() const {
return nominal_;
}
inline const Schedule& VanillaSwap::fixedSchedule() const {
return fixedSchedule_;
}
inline Rate VanillaSwap::fixedRate() const {
return fixedRate_;
}
inline const DayCounter& VanillaSwap::fixedDayCount() const {
return fixedDayCount_;
}
inline const Schedule& VanillaSwap::floatingSchedule() const {
return floatingSchedule_;
}
inline const boost::shared_ptr<IborIndex>& VanillaSwap::iborIndex() const {
return iborIndex_;
}
inline Spread VanillaSwap::spread() const {
return spread_;
}
inline const DayCounter& VanillaSwap::floatingDayCount() const {
return floatingDayCount_;
}
inline BusinessDayConvention VanillaSwap::paymentConvention() const {
return paymentConvention_;
}
inline const Leg& VanillaSwap::fixedLeg() const {
return legs_[0];
}
inline const Leg& VanillaSwap::floatingLeg() const {
return legs_[1];
}
std::ostream& operator<<(std::ostream& out,
VanillaSwap::Type t);
}
#endif
|