| 1 | /* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
| 2 | |
| 3 | /* |
| 4 | Copyright (C) 2007 Ferdinando Ametrano |
| 5 | Copyright (C) 2006, 2007 Chiara Fornarola |
| 6 | Copyright (C) 2007 StatPro Italia srl |
| 7 | |
| 8 | This file is part of QuantLib, a free-software/open-source library |
| 9 | for financial quantitative analysts and developers - http://quantlib.org/ |
| 10 | |
| 11 | QuantLib is free software: you can redistribute it and/or modify it |
| 12 | under the terms of the QuantLib license. You should have received a |
| 13 | copy of the license along with this program; if not, please email |
| 14 | <quantlib-dev@lists.sf.net>. The license is also available online at |
| 15 | <http://quantlib.org/license.shtml>. |
| 16 | |
| 17 | This program is distributed in the hope that it will be useful, but WITHOUT |
| 18 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
| 19 | FOR A PARTICULAR PURPOSE. See the license for more details. |
| 20 | */ |
| 21 | |
| 22 | #include <ql/instruments/bonds/cmsratebond.hpp> |
| 23 | #include <ql/cashflows/cmscoupon.hpp> |
| 24 | #include <ql/cashflows/simplecashflow.hpp> |
| 25 | #include <ql/indexes/swapindex.hpp> |
| 26 | #include <ql/time/schedule.hpp> |
| 27 | |
| 28 | namespace QuantLib { |
| 29 | |
| 30 | CmsRateBond::CmsRateBond( |
| 31 | Natural settlementDays, |
| 32 | Real faceAmount, |
| 33 | const Schedule& schedule, |
| 34 | const ext::shared_ptr<SwapIndex>& index, |
| 35 | const DayCounter& paymentDayCounter, |
| 36 | BusinessDayConvention paymentConvention, |
| 37 | Natural fixingDays, |
| 38 | const std::vector<Real>& gearings, |
| 39 | const std::vector<Spread>& spreads, |
| 40 | const std::vector<Rate>& caps, |
| 41 | const std::vector<Rate>& floors, |
| 42 | bool inArrears, |
| 43 | Real redemption, |
| 44 | const Date& issueDate) |
| 45 | : Bond(settlementDays, schedule.calendar(), issueDate) { |
| 46 | |
| 47 | maturityDate_ = schedule.endDate(); |
| 48 | |
| 49 | cashflows_ = CmsLeg(schedule, index) |
| 50 | .withNotionals(notional: faceAmount) |
| 51 | .withPaymentDayCounter(paymentDayCounter) |
| 52 | .withPaymentAdjustment(paymentConvention) |
| 53 | .withFixingDays(fixingDays) |
| 54 | .withGearings(gearings) |
| 55 | .withSpreads(spreads) |
| 56 | .withCaps(caps) |
| 57 | .withFloors(floors) |
| 58 | .inArrears(flag: inArrears); |
| 59 | |
| 60 | addRedemptionsToCashflows(redemptions: std::vector<Real>(1, redemption)); |
| 61 | |
| 62 | QL_ENSURE(!cashflows().empty(), "bond with no cashflows!" ); |
| 63 | QL_ENSURE(redemptions_.size() == 1, "multiple redemptions created" ); |
| 64 | |
| 65 | registerWith(h: index); |
| 66 | } |
| 67 | |
| 68 | } |
| 69 | |