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 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
|
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2021 Marcin Rybacki
Copyright (C) 2025 Uzair Beg
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/overnightindexedcoupon.hpp>
#include <ql/cashflows/iborcoupon.hpp>
#include <ql/cashflows/cashflows.hpp>
#include <ql/cashflows/simplecashflow.hpp>
#include <ql/cashflows/fixedratecoupon.hpp>
#include <ql/experimental/termstructures/crosscurrencyratehelpers.hpp>
#include <ql/utilities/null_deleter.hpp>
#include <utility>
namespace QuantLib {
namespace {
constexpr double sample_fixed_rate = 0.01;
Schedule legSchedule(const Date& evaluationDate,
const Period& tenor,
const Period& frequency,
Natural fixingDays,
const Calendar& calendar,
BusinessDayConvention convention,
bool endOfMonth) {
QL_REQUIRE(tenor >= frequency,
"XCCY instrument tenor should not be smaller than coupon frequency.");
Date referenceDate = calendar.adjust(evaluationDate);
Date earliestDate = calendar.advance(referenceDate, fixingDays * Days, convention);
Date maturity = earliestDate + tenor;
return MakeSchedule()
.from(earliestDate)
.to(maturity)
.withTenor(frequency)
.withCalendar(calendar)
.withConvention(convention)
.endOfMonth(endOfMonth)
.backwards();
}
Leg buildFloatingLeg(const Date& evaluationDate,
const Period& tenor,
Natural fixingDays,
const Calendar& calendar,
BusinessDayConvention convention,
bool endOfMonth,
const ext::shared_ptr<IborIndex>& idx,
Frequency paymentFrequency,
Integer paymentLag) {
auto overnightIndex = ext::dynamic_pointer_cast<OvernightIndex>(idx);
Period freqPeriod;
if (paymentFrequency == NoFrequency) {
QL_REQUIRE(!overnightIndex, "Require payment frequency for overnight indices.");
freqPeriod = idx->tenor();
} else {
freqPeriod = Period(paymentFrequency);
}
Schedule sch = legSchedule(evaluationDate, tenor, freqPeriod, fixingDays, calendar,
convention, endOfMonth);
if (overnightIndex != nullptr) {
return OvernightLeg(sch, overnightIndex)
.withNotionals(1.0)
.withPaymentLag(paymentLag);
}
return IborLeg(sch, idx).withNotionals(1.0).withPaymentLag(paymentLag);
}
Leg buildFixedLeg(const Date& evaluationDate,
const Period& tenor,
Natural fixingDays,
const Calendar& calendar,
BusinessDayConvention convention,
bool endOfMonth,
Frequency paymentFrequency,
const DayCounter& dayCount,
Integer paymentLag) {
auto freqPeriod = Period(paymentFrequency);
Schedule sch = legSchedule(evaluationDate, tenor, freqPeriod, fixingDays, calendar,
convention, endOfMonth);
return FixedRateLeg(sch)
.withNotionals(1.0)
.withCouponRates(sample_fixed_rate, dayCount)
.withPaymentLag(paymentLag);
}
std::pair<Real, Real>
npvbpsConstNotionalLeg(const Leg& leg,
const Date& initialNotionalExchangeDate,
const Date& finalNotionalExchangeDate,
const Handle<YieldTermStructure>& discountCurveHandle) {
const Spread basisPoint = 1.0e-4;
Date refDt = discountCurveHandle->referenceDate();
const YieldTermStructure& discountRef = **discountCurveHandle;
bool includeSettleDtFlows = true;
auto [npv, bps] = CashFlows::npvbps(leg, discountRef, includeSettleDtFlows, refDt, refDt);
// Include NPV of the notional exchange at start and maturity.
npv += (-1.0) * discountRef.discount(initialNotionalExchangeDate);
npv += discountRef.discount(finalNotionalExchangeDate);
bps /= basisPoint;
return { npv, bps };
}
class ResettingLegHelper {
public:
explicit ResettingLegHelper(const YieldTermStructure& discountCurve,
const YieldTermStructure& foreignCurve)
: discountCurve_(discountCurve), foreignCurve_(foreignCurve) {}
DiscountFactor discount(const Date& d) const {
return discountCurve_.discount(d);
}
Real notionalAdjustment(const Date& d) const {
return foreignCurve_.discount(d) / discountCurve_.discount(d);
}
private:
const YieldTermStructure& discountCurve_;
const YieldTermStructure& foreignCurve_;
};
class ResettingLegCalculator : public AcyclicVisitor, public Visitor<Coupon> {
public:
explicit ResettingLegCalculator(const YieldTermStructure& discountCurve,
const YieldTermStructure& foreignCurve,
Integer paymentLag,
Calendar paymentCalendar,
BusinessDayConvention convention)
: helper_(discountCurve, foreignCurve), paymentLag_(paymentLag),
paymentCalendar_(std::move(paymentCalendar)), convention_(convention) {}
void visit(Coupon& c) override {
Date start = c.accrualStartDate();
Date end = c.accrualEndDate();
Time accrual = c.accrualPeriod();
Real adjustedNotional = c.nominal() * helper_.notionalAdjustment(start);
DiscountFactor discountStart, discountEnd;
if (paymentLag_ == 0) {
discountStart = helper_.discount(start);
discountEnd = helper_.discount(end);
} else {
Date paymentStart =
paymentCalendar_.advance(start, paymentLag_, Days, convention_);
Date paymentEnd = paymentCalendar_.advance(end, paymentLag_, Days, convention_);
discountStart = helper_.discount(paymentStart);
discountEnd = helper_.discount(paymentEnd);
}
// NPV of a resetting coupon consists of a redemption of borrowed amount occurring
// at the end of the accrual period plus the accrued interest, minus the borrowed
// amount at the start of the period. All amounts are corrected by an adjustment
// corresponding to the implied forward exchange rate, which is estimated by
// the ratio of foreign and domestic curves discount factors.
Real npvRedeemedAmount =
adjustedNotional * discountEnd * (1.0 + c.rate() * accrual);
Real npvBorrowedAmount = -adjustedNotional * discountStart;
npv_ += (npvRedeemedAmount + npvBorrowedAmount);
bps_ += adjustedNotional * discountEnd * accrual;
}
Real NPV() const { return npv_; }
Real BPS() const { return bps_; }
private:
ResettingLegHelper helper_;
Real npv_ = 0.0;
Real bps_ = 0.0;
Integer paymentLag_;
Calendar paymentCalendar_;
BusinessDayConvention convention_;
};
std::pair<Real, Real> npvbpsResettingLeg(const Leg& iborLeg,
Integer paymentLag,
const Calendar& paymentCalendar,
BusinessDayConvention convention,
const Handle<YieldTermStructure>& discountCurveHandle,
const Handle<YieldTermStructure>& foreignCurveHandle) {
const YieldTermStructure& discountCurveRef = **discountCurveHandle;
const YieldTermStructure& foreignCurveRef = **foreignCurveHandle;
ResettingLegCalculator calc(discountCurveRef, foreignCurveRef, paymentLag,
paymentCalendar, convention);
for (const auto& i : iborLeg) {
CashFlow& cf = *i;
cf.accept(calc);
}
return { calc.NPV(), calc.BPS() };
}
}
CrossCurrencySwapRateHelperBase::CrossCurrencySwapRateHelperBase(
const Handle<Quote>& quote,
const Period& tenor,
Natural fixingDays,
Calendar calendar,
BusinessDayConvention convention,
bool endOfMonth,
Handle<YieldTermStructure> collateralCurve,
Integer paymentLag)
: RelativeDateRateHelper(quote), tenor_(tenor), fixingDays_(fixingDays),
calendar_(std::move(calendar)), convention_(convention), endOfMonth_(endOfMonth),
paymentLag_(paymentLag), collateralHandle_(std::move(collateralCurve)) {
registerWith(collateralHandle_);
}
void CrossCurrencySwapRateHelperBase::setTermStructure(YieldTermStructure* t) {
// do not set the relinkable handle as an observer -
// force recalculation when needed
bool observer = false;
ext::shared_ptr<YieldTermStructure> temp(t, null_deleter());
termStructureHandle_.linkTo(temp, observer);
RelativeDateRateHelper::setTermStructure(t);
}
void CrossCurrencySwapRateHelperBase::initializeDatesFromLegs(const Leg& firstLeg,
const Leg& secondLeg) {
earliestDate_ = std::min(CashFlows::startDate(firstLeg),
CashFlows::startDate(secondLeg));
maturityDate_ = std::max(CashFlows::maturityDate(firstLeg),
CashFlows::maturityDate(secondLeg));
if (paymentLag_ == 0) {
initialNotionalExchangeDate_ = earliestDate_;
finalNotionalExchangeDate_ = maturityDate_;
} else {
initialNotionalExchangeDate_ = calendar_.advance(earliestDate_, paymentLag_, Days, convention_);
finalNotionalExchangeDate_ = calendar_.advance(maturityDate_, paymentLag_, Days, convention_);
}
Date lastPaymentDate =
std::max(firstLeg.back()->date(),
secondLeg.back()->date());
latestRelevantDate_ = latestDate_ = std::max(maturityDate_, lastPaymentDate);
}
CrossCurrencyBasisSwapRateHelperBase::CrossCurrencyBasisSwapRateHelperBase(
const Handle<Quote>& basis,
const Period& tenor,
Natural fixingDays,
Calendar calendar,
BusinessDayConvention convention,
bool endOfMonth,
ext::shared_ptr<IborIndex> baseCurrencyIndex,
ext::shared_ptr<IborIndex> quoteCurrencyIndex,
Handle<YieldTermStructure> collateralCurve,
bool isFxBaseCurrencyCollateralCurrency,
bool isBasisOnFxBaseCurrencyLeg,
Frequency paymentFrequency,
Integer paymentLag)
: CrossCurrencySwapRateHelperBase(basis, tenor, fixingDays, std::move(calendar), convention, endOfMonth,
std::move(collateralCurve), paymentLag),
baseCcyIdx_(std::move(baseCurrencyIndex)), quoteCcyIdx_(std::move(quoteCurrencyIndex)),
isFxBaseCurrencyCollateralCurrency_(isFxBaseCurrencyCollateralCurrency),
isBasisOnFxBaseCurrencyLeg_(isBasisOnFxBaseCurrencyLeg),
paymentFrequency_(paymentFrequency) {
registerWith(baseCcyIdx_);
registerWith(quoteCcyIdx_);
CrossCurrencyBasisSwapRateHelperBase::initializeDates();
}
void CrossCurrencyBasisSwapRateHelperBase::initializeDates() {
baseCcyIborLeg_ = buildFloatingLeg(evaluationDate_, tenor_, fixingDays_, calendar_, convention_,
endOfMonth_, baseCcyIdx_, paymentFrequency_, paymentLag_);
quoteCcyIborLeg_ = buildFloatingLeg(evaluationDate_, tenor_, fixingDays_, calendar_,
convention_, endOfMonth_, quoteCcyIdx_, paymentFrequency_, paymentLag_);
initializeDatesFromLegs(baseCcyIborLeg_, quoteCcyIborLeg_);
}
const Handle<YieldTermStructure>&
CrossCurrencyBasisSwapRateHelperBase::baseCcyLegDiscountHandle() const {
return isFxBaseCurrencyCollateralCurrency_ ? collateralHandle_ : termStructureHandle_;
}
const Handle<YieldTermStructure>&
CrossCurrencyBasisSwapRateHelperBase::quoteCcyLegDiscountHandle() const {
return isFxBaseCurrencyCollateralCurrency_ ? termStructureHandle_ : collateralHandle_;
}
ConstNotionalCrossCurrencyBasisSwapRateHelper::ConstNotionalCrossCurrencyBasisSwapRateHelper(
const Handle<Quote>& basis,
const Period& tenor,
Natural fixingDays,
const Calendar& calendar,
BusinessDayConvention convention,
bool endOfMonth,
const ext::shared_ptr<IborIndex>& baseCurrencyIndex,
const ext::shared_ptr<IborIndex>& quoteCurrencyIndex,
const Handle<YieldTermStructure>& collateralCurve,
bool isFxBaseCurrencyCollateralCurrency,
bool isBasisOnFxBaseCurrencyLeg,
Frequency paymentFrequency,
Integer paymentLag)
: CrossCurrencyBasisSwapRateHelperBase(basis,
tenor,
fixingDays,
calendar,
convention,
endOfMonth,
baseCurrencyIndex,
quoteCurrencyIndex,
collateralCurve,
isFxBaseCurrencyCollateralCurrency,
isBasisOnFxBaseCurrencyLeg,
paymentFrequency,
paymentLag) {}
Real ConstNotionalCrossCurrencyBasisSwapRateHelper::impliedQuote() const {
QL_REQUIRE(!termStructureHandle_.empty(), "term structure not set");
QL_REQUIRE(!collateralHandle_.empty(), "collateral term structure not set");
auto [npvBaseCcy, bpsBaseCcy] = npvbpsConstNotionalLeg(baseCcyIborLeg_, initialNotionalExchangeDate_, finalNotionalExchangeDate_, baseCcyLegDiscountHandle());
auto [npvQuoteCcy, bpsQuoteCcy] = npvbpsConstNotionalLeg(quoteCcyIborLeg_, initialNotionalExchangeDate_, finalNotionalExchangeDate_, quoteCcyLegDiscountHandle());
Real bps = isBasisOnFxBaseCurrencyLeg_ ? -bpsBaseCcy : bpsQuoteCcy;
QL_REQUIRE(std::fabs(bps) > 0.0, "null BPS");
return -(npvQuoteCcy - npvBaseCcy) / bps;
}
void ConstNotionalCrossCurrencyBasisSwapRateHelper::accept(AcyclicVisitor& v) {
auto* v1 = dynamic_cast<Visitor<ConstNotionalCrossCurrencyBasisSwapRateHelper>*>(&v);
if (v1 != nullptr)
v1->visit(*this);
else
RateHelper::accept(v);
}
MtMCrossCurrencyBasisSwapRateHelper::MtMCrossCurrencyBasisSwapRateHelper(
const Handle<Quote>& basis,
const Period& tenor,
Natural fixingDays,
const Calendar& calendar,
BusinessDayConvention convention,
bool endOfMonth,
const ext::shared_ptr<IborIndex>& baseCurrencyIndex,
const ext::shared_ptr<IborIndex>& quoteCurrencyIndex,
const Handle<YieldTermStructure>& collateralCurve,
bool isFxBaseCurrencyCollateralCurrency,
bool isBasisOnFxBaseCurrencyLeg,
bool isFxBaseCurrencyLegResettable,
Frequency paymentFrequency,
Integer paymentLag)
: CrossCurrencyBasisSwapRateHelperBase(basis,
tenor,
fixingDays,
calendar,
convention,
endOfMonth,
baseCurrencyIndex,
quoteCurrencyIndex,
collateralCurve,
isFxBaseCurrencyCollateralCurrency,
isBasisOnFxBaseCurrencyLeg,
paymentFrequency,
paymentLag),
isFxBaseCurrencyLegResettable_(isFxBaseCurrencyLegResettable) {}
Real MtMCrossCurrencyBasisSwapRateHelper::impliedQuote() const {
QL_REQUIRE(!termStructureHandle_.empty(), "term structure not set");
QL_REQUIRE(!collateralHandle_.empty(), "collateral term structure not set");
auto [npvBaseCcy, bpsBaseCcy] =
isFxBaseCurrencyLegResettable_ ?
npvbpsResettingLeg(baseCcyIborLeg_, paymentLag_, calendar_, convention_,
baseCcyLegDiscountHandle(), quoteCcyLegDiscountHandle()) :
npvbpsConstNotionalLeg(baseCcyIborLeg_, initialNotionalExchangeDate_,
finalNotionalExchangeDate_, baseCcyLegDiscountHandle());
auto [npvQuoteCcy, bpsQuoteCcy] =
isFxBaseCurrencyLegResettable_ ?
npvbpsConstNotionalLeg(quoteCcyIborLeg_, initialNotionalExchangeDate_,
finalNotionalExchangeDate_, quoteCcyLegDiscountHandle()) :
npvbpsResettingLeg(quoteCcyIborLeg_, paymentLag_, calendar_, convention_,
quoteCcyLegDiscountHandle(), baseCcyLegDiscountHandle());
Real bps = isBasisOnFxBaseCurrencyLeg_ ? -bpsBaseCcy : bpsQuoteCcy;
QL_REQUIRE(std::fabs(bps) > 0.0, "null BPS");
return -(npvQuoteCcy - npvBaseCcy) / bps;
}
void MtMCrossCurrencyBasisSwapRateHelper::accept(AcyclicVisitor& v) {
auto* v1 = dynamic_cast<Visitor<MtMCrossCurrencyBasisSwapRateHelper>*>(&v);
if (v1 != nullptr)
v1->visit(*this);
else
RateHelper::accept(v);
}
ConstNotionalCrossCurrencySwapRateHelper::ConstNotionalCrossCurrencySwapRateHelper(
const Handle<Quote>& fixedRate,
const Period& tenor,
Natural fixingDays,
const Calendar& calendar,
BusinessDayConvention convention,
bool endOfMonth,
Frequency fixedFrequency,
DayCounter fixedDayCount,
const ext::shared_ptr<IborIndex>& floatIndex,
const Handle<YieldTermStructure>& collateralCurve,
bool collateralOnFixedLeg,
Integer paymentLag)
: CrossCurrencySwapRateHelperBase(fixedRate, tenor, fixingDays, calendar, convention, endOfMonth,
collateralCurve, paymentLag),
fixedFrequency_(fixedFrequency),
fixedDayCount_(std::move(fixedDayCount)),
floatIndex_(floatIndex),
collateralOnFixedLeg_(collateralOnFixedLeg) {
QL_REQUIRE(floatIndex_, "floating index required");
registerWith(floatIndex_);
initializeDates();
}
void ConstNotionalCrossCurrencySwapRateHelper::initializeDates() {
fixedLeg_ = buildFixedLeg(evaluationDate_, tenor_, fixingDays_, calendar_, convention_,
endOfMonth_, fixedFrequency_, fixedDayCount_, paymentLag_);
floatLeg_ = buildFloatingLeg(evaluationDate_, tenor_, fixingDays_, floatIndex_->fixingCalendar(),
floatIndex_->businessDayConvention(), endOfMonth_,
floatIndex_, floatIndex_->tenor().frequency(), paymentLag_);
initializeDatesFromLegs(fixedLeg_, floatLeg_);
}
const Handle<YieldTermStructure>&
ConstNotionalCrossCurrencySwapRateHelper::fixedLegDiscountHandle() const {
return collateralOnFixedLeg_ ? collateralHandle_ : termStructureHandle_;
}
const Handle<YieldTermStructure>&
ConstNotionalCrossCurrencySwapRateHelper::floatingLegDiscountHandle() const {
return collateralOnFixedLeg_ ? termStructureHandle_ : collateralHandle_;
}
Real ConstNotionalCrossCurrencySwapRateHelper::impliedQuote() const {
QL_REQUIRE(!termStructureHandle_.empty(), "term structure not set");
QL_REQUIRE(!collateralHandle_.empty(), "collateral term structure not set");
auto [fixedNpv, fixedBps] = npvbpsConstNotionalLeg(
fixedLeg_, initialNotionalExchangeDate_, finalNotionalExchangeDate_, fixedLegDiscountHandle());
auto [floatNpv, floatBps] = npvbpsConstNotionalLeg(
floatLeg_, initialNotionalExchangeDate_, finalNotionalExchangeDate_, floatingLegDiscountHandle());
QL_REQUIRE(std::fabs(fixedBps) > 0.0, "null fixed-leg BPS");
return sample_fixed_rate + (floatNpv - fixedNpv) / fixedBps;
}
void ConstNotionalCrossCurrencySwapRateHelper::accept(AcyclicVisitor& v) {
auto* v1 = dynamic_cast<Visitor<ConstNotionalCrossCurrencySwapRateHelper>*>(&v);
if (v1 != nullptr)
v1->visit(*this);
else
RateHelper::accept(v);
}
}
|