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
|
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2005, 2006 Theo Boafo
Copyright (C) 2006, 2007 StatPro Italia 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
<quantlib-dev@lists.sf.net>. The license is also available online at
<https://www.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 convertiblebonds.hpp
\brief convertible bond class
*/
#ifndef quantlib_convertible_bonds_hpp
#define quantlib_convertible_bonds_hpp
#include <ql/instruments/bond.hpp>
#include <ql/instruments/callabilityschedule.hpp>
#include <ql/instruments/dividendschedule.hpp>
#include <ql/instruments/oneassetoption.hpp>
#include <ql/quote.hpp>
#include <ql/time/daycounter.hpp>
#include <ql/time/schedule.hpp>
namespace QuantLib {
class IborIndex;
class PricingEngine;
//! %callability leaving to the holder the possibility to convert
class SoftCallability : public Callability {
public:
SoftCallability(const Bond::Price& price, const Date& date, Real trigger)
: Callability(price, Callability::Call, date), trigger_(trigger) {}
Real trigger() const { return trigger_; }
private:
Real trigger_;
};
//! base class for convertible bonds
class ConvertibleBond : public Bond {
public:
class arguments;
class engine;
Real conversionRatio() const { return conversionRatio_; }
const CallabilitySchedule& callability() const { return callability_; }
protected:
ConvertibleBond(ext::shared_ptr<Exercise> exercise,
Real conversionRatio,
const CallabilitySchedule& callability,
const Date& issueDate,
Natural settlementDays,
const Schedule& schedule,
Real redemption);
void setupArguments(PricingEngine::arguments*) const override;
private:
ext::shared_ptr<Exercise> exercise_;
Real conversionRatio_;
CallabilitySchedule callability_;
Real redemption_;
};
//! convertible zero-coupon bond
/*! \warning Most methods inherited from Bond (such as yield or
the yield-based dirtyPrice and cleanPrice) refer to
the underlying plain-vanilla bond and do not take
convertibility and callability into account.
*/
class ConvertibleZeroCouponBond : public ConvertibleBond {
public:
ConvertibleZeroCouponBond(const ext::shared_ptr<Exercise>& exercise,
Real conversionRatio,
const CallabilitySchedule& callability,
const Date& issueDate,
Natural settlementDays,
const DayCounter& dayCounter,
const Schedule& schedule,
Real redemption = 100);
};
//! convertible fixed-coupon bond
/*! \warning Most methods inherited from Bond (such as yield or
the yield-based dirtyPrice and cleanPrice) refer to
the underlying plain-vanilla bond and do not take
convertibility and callability into account.
*/
class ConvertibleFixedCouponBond : public ConvertibleBond {
public:
ConvertibleFixedCouponBond(const ext::shared_ptr<Exercise>& exercise,
Real conversionRatio,
const CallabilitySchedule& callability,
const Date& issueDate,
Natural settlementDays,
const std::vector<Rate>& coupons,
const DayCounter& dayCounter,
const Schedule& schedule,
Real redemption = 100,
const Period& exCouponPeriod = Period(),
const Calendar& exCouponCalendar = Calendar(),
BusinessDayConvention exCouponConvention = Unadjusted,
bool exCouponEndOfMonth = false);
};
//! convertible floating-rate bond
/*! \warning Most methods inherited from Bond (such as yield or
the yield-based dirtyPrice and cleanPrice) refer to
the underlying plain-vanilla bond and do not take
convertibility and callability into account.
*/
class ConvertibleFloatingRateBond : public ConvertibleBond {
public:
ConvertibleFloatingRateBond(const ext::shared_ptr<Exercise>& exercise,
Real conversionRatio,
const CallabilitySchedule& callability,
const Date& issueDate,
Natural settlementDays,
const ext::shared_ptr<IborIndex>& index,
Natural fixingDays,
const std::vector<Spread>& spreads,
const DayCounter& dayCounter,
const Schedule& schedule,
Real redemption = 100,
const Period& exCouponPeriod = Period(),
const Calendar& exCouponCalendar = Calendar(),
BusinessDayConvention exCouponConvention = Unadjusted,
bool exCouponEndOfMonth = false);
};
class ConvertibleBond::arguments : public PricingEngine::arguments {
public:
arguments()
: conversionRatio(Null<Real>()), settlementDays(Null<Natural>()), redemption(Null<Real>()) {}
ext::shared_ptr<Exercise> exercise;
Real conversionRatio;
std::vector<Date> callabilityDates;
std::vector<Callability::Type> callabilityTypes;
std::vector<Real> callabilityPrices;
std::vector<Real> callabilityTriggers;
Leg cashflows;
Date issueDate;
Date settlementDate;
Natural settlementDays;
Real redemption;
void validate() const override;
};
class ConvertibleBond::engine
: public GenericEngine<ConvertibleBond::arguments, ConvertibleBond::results> {};
}
#endif
|