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 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
|
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2004 Jeff Yu
Copyright (C) 2004 M-Dimension Consulting Inc.
Copyright (C) 2005, 2006, 2007, 2008, 2010 StatPro Italia srl
Copyright (C) 2007, 2008, 2009 Ferdinando Ametrano
Copyright (C) 2007 Chiara Fornarola
Copyright (C) 2008 Simon Ibbotson
Copyright (C) 2022 Oleg Kulkov
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.
*/
#include <ql/cashflows/cashflows.hpp>
#include <ql/cashflows/floatingratecoupon.hpp>
#include <ql/cashflows/simplecashflow.hpp>
#include <ql/instruments/bond.hpp>
#include <ql/math/solvers1d/brent.hpp>
#include <ql/pricingengines/bond/bondfunctions.hpp>
#include <ql/pricingengines/bond/discountingbondengine.hpp>
#include <ql/shared_ptr.hpp>
#include <utility>
namespace QuantLib {
Bond::Bond(Natural settlementDays, Calendar calendar, const Date& issueDate, const Leg& coupons)
: settlementDays_(settlementDays), calendar_(std::move(calendar)), cashflows_(coupons),
issueDate_(issueDate) {
if (!coupons.empty()) {
std::sort(cashflows_.begin(), cashflows_.end(),
earlier_than<ext::shared_ptr<CashFlow> >());
if (issueDate_ != Date()) {
QL_REQUIRE(issueDate_<cashflows_[0]->date(),
"issue date (" << issueDate_ <<
") must be earlier than first payment date (" <<
cashflows_[0]->date() << ")");
}
maturityDate_ = coupons.back()->date();
addRedemptionsToCashflows();
}
registerWith(Settings::instance().evaluationDate());
for (const auto& cashflow : cashflows_)
registerWith(cashflow);
}
Bond::Bond(Natural settlementDays,
Calendar calendar,
Real faceAmount,
const Date& maturityDate,
const Date& issueDate,
const Leg& cashflows)
: settlementDays_(settlementDays), calendar_(std::move(calendar)), cashflows_(cashflows),
maturityDate_(maturityDate), issueDate_(issueDate) {
if (!cashflows.empty()) {
std::sort(cashflows_.begin(), cashflows_.end()-1,
earlier_than<ext::shared_ptr<CashFlow> >());
if (maturityDate_ == Date())
maturityDate_ = CashFlows::maturityDate(cashflows);
if (issueDate_ != Date()) {
QL_REQUIRE(issueDate_<cashflows_[0]->date(),
"issue date (" << issueDate_ <<
") must be earlier than first payment date (" <<
cashflows_[0]->date() << ")");
}
notionals_.resize(2);
notionalSchedule_.resize(2);
notionalSchedule_[0] = Date();
notionals_[0] = faceAmount;
notionalSchedule_[1] = maturityDate_;
notionals_[1] = 0.0;
redemptions_.push_back(cashflows.back());
}
registerWith(Settings::instance().evaluationDate());
for (const auto& cashflow : cashflows_)
registerWith(cashflow);
}
bool Bond::isExpired() const {
// this is the Instrument interface, so it doesn't use
// BondFunctions, and includeSettlementDateFlows is true
// (unless QL_TODAY_PAYMENTS will set it to false later on)
return CashFlows::isExpired(cashflows_,
true,
Settings::instance().evaluationDate());
}
Real Bond::notional(Date d) const {
if (d == Date())
d = settlementDate();
if (d > notionalSchedule_.back()) {
// after maturity
return 0.0;
}
// After the check above, d is between the schedule
// boundaries. We search starting from the second notional
// date, since the first is null. After the call to
// lower_bound, *i is the earliest date which is greater or
// equal than d. Its index is greater or equal to 1.
auto i = std::lower_bound(notionalSchedule_.begin() + 1, notionalSchedule_.end(), d);
Size index = std::distance(notionalSchedule_.begin(), i);
if (d < notionalSchedule_[index]) {
// no doubt about what to return
return notionals_[index-1];
} else {
// d is equal to a redemption date.
// As per bond conventions, the payment has occurred;
// the bond already changed notional.
return notionals_[index];
}
}
const ext::shared_ptr<CashFlow>& Bond::redemption() const {
QL_REQUIRE(redemptions_.size() == 1,
"multiple redemption cash flows given");
return redemptions_.back();
}
Date Bond::startDate() const {
return BondFunctions::startDate(*this);
}
Date Bond::maturityDate() const {
if (maturityDate_ != Date())
return maturityDate_;
else
return BondFunctions::maturityDate(*this);
}
bool Bond::isTradable(Date d) const {
return BondFunctions::isTradable(*this, d);
}
Date Bond::settlementDate(Date d) const {
if (d==Date())
d = Settings::instance().evaluationDate();
// usually, the settlement is at T+n...
Date settlement = calendar_.advance(d, settlementDays_, Days);
// ...but the bond won't be traded until the issue date (if given.)
if (issueDate_ == Date())
return settlement;
else
return std::max(settlement, issueDate_);
}
Real Bond::cleanPrice() const {
return dirtyPrice() - accruedAmount(settlementDate());
}
Real Bond::dirtyPrice() const {
Real currentNotional = notional(settlementDate());
if (currentNotional == 0.0)
return 0.0;
else
return settlementValue()*100.0/currentNotional;
}
Real Bond::settlementValue() const {
calculate();
QL_REQUIRE(settlementValue_ != Null<Real>(),
"settlement value not provided");
return settlementValue_;
}
Real Bond::settlementValue(Real cleanPrice) const {
Real dirtyPrice = cleanPrice + accruedAmount(settlementDate());
return dirtyPrice / 100.0 * notional(settlementDate());
}
Rate Bond::yield(const DayCounter& dc,
Compounding comp,
Frequency freq,
Real accuracy,
Size maxEvaluations,
Real guess,
Bond::Price::Type priceType) const {
Real currentNotional = notional(settlementDate());
if (currentNotional == 0.0)
return 0.0;
Bond::Price price(priceType == Bond::Price::Clean ? cleanPrice() : dirtyPrice(), priceType);
return BondFunctions::yield(*this, price, dc, comp, freq,
settlementDate(),
accuracy, maxEvaluations,
guess);
}
Real Bond::cleanPrice(Rate y,
const DayCounter& dc,
Compounding comp,
Frequency freq,
Date settlement) const {
return BondFunctions::cleanPrice(*this, y, dc, comp, freq, settlement);
}
Real Bond::dirtyPrice(Rate y,
const DayCounter& dc,
Compounding comp,
Frequency freq,
Date settlement) const {
Real currentNotional = notional(settlement);
if (currentNotional == 0.0)
return 0.0;
return BondFunctions::cleanPrice(*this, y, dc, comp, freq, settlement)
+ accruedAmount(settlement);
}
Rate Bond::yield(Bond::Price price,
const DayCounter& dc,
Compounding comp,
Frequency freq,
Date settlement,
Real accuracy,
Size maxEvaluations,
Real guess) const {
Real currentNotional = notional(settlement);
if (currentNotional == 0.0)
return 0.0;
return BondFunctions::yield(*this, price, dc, comp, freq,
settlement, accuracy, maxEvaluations,
guess);
}
Real Bond::accruedAmount(Date settlement) const {
Real currentNotional = notional(settlement);
if (currentNotional == 0.0)
return 0.0;
return BondFunctions::accruedAmount(*this, settlement);
}
Rate Bond::nextCouponRate(Date settlement) const {
return BondFunctions::nextCouponRate(*this, settlement);
}
Rate Bond::previousCouponRate(Date settlement) const {
return BondFunctions::previousCouponRate(*this, settlement);
}
Date Bond::nextCashFlowDate(Date settlement) const {
return BondFunctions::nextCashFlowDate(*this, settlement);
}
Date Bond::previousCashFlowDate(Date settlement) const {
return BondFunctions::previousCashFlowDate(*this, settlement);
}
void Bond::setupExpired() const {
Instrument::setupExpired();
settlementValue_ = 0.0;
}
void Bond::setupArguments(PricingEngine::arguments* args) const {
auto* arguments = dynamic_cast<Bond::arguments*>(args);
QL_REQUIRE(arguments != nullptr, "wrong argument type");
arguments->settlementDate = settlementDate();
arguments->cashflows = cashflows_;
arguments->calendar = calendar_;
}
void Bond::fetchResults(const PricingEngine::results* r) const {
Instrument::fetchResults(r);
const auto* results = dynamic_cast<const Bond::results*>(r);
QL_ENSURE(results != nullptr, "wrong result type");
settlementValue_ = results->settlementValue;
}
void Bond::addRedemptionsToCashflows(const std::vector<Real>& redemptions) {
// First, we gather the notional information from the cashflows
calculateNotionalsFromCashflows();
// Then, we create the redemptions based on the notional
// information and we add them to the cashflows vector after
// the coupons.
redemptions_.clear();
for (Size i=1; i<notionalSchedule_.size(); ++i) {
Real R = i < redemptions.size() ? redemptions[i] :
!redemptions.empty() ? redemptions.back() :
100.0;
Real amount = (R/100.0)*(notionals_[i-1]-notionals_[i]);
ext::shared_ptr<CashFlow> payment;
if (i < notionalSchedule_.size()-1)
payment = ext::make_shared<AmortizingPayment>(amount,
notionalSchedule_[i]);
else
payment = ext::make_shared<Redemption>(amount, notionalSchedule_[i]);
cashflows_.push_back(payment);
redemptions_.push_back(payment);
}
// stable_sort now moves the redemptions to the right places
// while ensuring that they follow coupons with the same date.
std::stable_sort(cashflows_.begin(), cashflows_.end(),
earlier_than<ext::shared_ptr<CashFlow> >());
}
void Bond::setSingleRedemption(Real notional,
Real redemption,
const Date& date) {
ext::shared_ptr<CashFlow> redemptionCashflow(
new Redemption(notional*redemption/100.0, date));
setSingleRedemption(notional, redemptionCashflow);
}
void Bond::setSingleRedemption(Real notional,
const ext::shared_ptr<CashFlow>& redemption) {
notionals_.resize(2);
notionalSchedule_.resize(2);
redemptions_.clear();
notionalSchedule_[0] = Date();
notionals_[0] = notional;
notionalSchedule_[1] = redemption->date();
notionals_[1] = 0.0;
cashflows_.push_back(redemption);
redemptions_.push_back(redemption);
}
void Bond::deepUpdate() {
for (auto& cashflow : cashflows_) {
cashflow->deepUpdate();
}
update();
}
void Bond::calculateNotionalsFromCashflows() {
notionalSchedule_.clear();
notionals_.clear();
Date lastPaymentDate = Date();
notionalSchedule_.emplace_back();
for (auto& cashflow : cashflows_) {
ext::shared_ptr<Coupon> coupon = ext::dynamic_pointer_cast<Coupon>(cashflow);
if (!coupon)
continue;
Real notional = coupon->nominal();
// we add the notional only if it is the first one...
if (notionals_.empty()) {
notionals_.push_back(coupon->nominal());
lastPaymentDate = coupon->date();
} else if (!close(notional, notionals_.back())) {
// ...or if it has changed.
notionals_.push_back(coupon->nominal());
// in this case, we also add the last valid date for
// the previous one...
notionalSchedule_.push_back(lastPaymentDate);
// ...and store the candidate for this one.
lastPaymentDate = coupon->date();
} else {
// otherwise, we just extend the valid range of dates
// for the current notional.
lastPaymentDate = coupon->date();
}
}
QL_REQUIRE(!notionals_.empty(), "no coupons provided");
notionals_.push_back(0.0);
notionalSchedule_.push_back(lastPaymentDate);
}
void Bond::arguments::validate() const {
QL_REQUIRE(settlementDate != Date(), "no settlement date provided");
QL_REQUIRE(!cashflows.empty(), "no cash flow provided");
for (const auto & cf: cashflows)
QL_REQUIRE(cf, "null cash flow provided");
}
}
|