QuantLib: a free/open-source library for quantitative finance
Reference manual - version 1.40
Loading...
Searching...
No Matches
CCTEU Class Reference

#include <ql/instruments/bonds/btp.hpp>

Inheritance diagram for CCTEU:

Public Member Functions

 CCTEU (const Date &maturityDate, Spread spread, const Handle< YieldTermStructure > &fwdCurve=Handle< YieldTermStructure >(), const Date &startDate=Date(), const Date &issueDate=Date())
Bond interface
Real accruedAmount (Date d=Date()) const override
 accrued amount at a given date
Public Member Functions inherited from FloatingRateBond
 FloatingRateBond (Natural settlementDays, Real faceAmount, Schedule schedule, const ext::shared_ptr< IborIndex > &iborIndex, const DayCounter &accrualDayCounter, BusinessDayConvention paymentConvention=Following, Natural fixingDays=Null< Natural >(), const std::vector< Real > &gearings={ 1.0 }, const std::vector< Spread > &spreads={ 0.0 }, const std::vector< Rate > &caps={}, const std::vector< Rate > &floors={}, bool inArrears=false, Real redemption=100.0, const Date &issueDate=Date(), const Period &exCouponPeriod=Period(), const Calendar &exCouponCalendar=Calendar(), BusinessDayConvention exCouponConvention=Unadjusted, bool exCouponEndOfMonth=false)
Public Member Functions inherited from Bond
 Bond (Natural settlementDays, Calendar calendar, const Date &issueDate=Date(), const Leg &coupons=Leg())
 constructor for amortizing or non-amortizing bonds.
 Bond (Natural settlementDays, Calendar calendar, Real faceAmount, const Date &maturityDate, const Date &issueDate=Date(), const Leg &cashflows=Leg())
 old constructor for non amortizing bonds.
bool isExpired () const override
 returns whether the instrument might have value greater than zero.
void deepUpdate () override
Natural settlementDays () const
const Calendarcalendar () const
const std::vector< Real > & notionals () const
virtual Real notional (Date d=Date()) const
const Legcashflows () const
const Legredemptions () const
const ext::shared_ptr< CashFlow > & redemption () const
Date startDate () const
Date maturityDate () const
Date issueDate () const
bool isTradable (Date d=Date()) const
Date settlementDate (Date d=Date()) const
Real cleanPrice () const
 theoretical clean price
Real dirtyPrice () const
 theoretical dirty price
Real settlementValue () const
 theoretical settlement value
Rate yield (const DayCounter &dc, Compounding comp, Frequency freq, Real accuracy=1.0e-8, Size maxEvaluations=100, Real guess=0.05, Bond::Price::Type priceType=Bond::Price::Clean) const
 theoretical bond yield
Real cleanPrice (Rate yield, const DayCounter &dc, Compounding comp, Frequency freq, Date settlementDate=Date()) const
 clean price given a yield and settlement date
Real dirtyPrice (Rate yield, const DayCounter &dc, Compounding comp, Frequency freq, Date settlementDate=Date()) const
 dirty price given a yield and settlement date
Real settlementValue (Real cleanPrice) const
 settlement value as a function of the clean price
Rate yield (Bond::Price price, const DayCounter &dc, Compounding comp, Frequency freq, Date settlementDate=Date(), Real accuracy=1.0e-8, Size maxEvaluations=100, Real guess=0.05) const
 yield given a price and settlement date
virtual Rate nextCouponRate (Date d=Date()) const
Rate previousCouponRate (Date d=Date()) const
 Previous coupon already paid at a given date.
Date nextCashFlowDate (Date d=Date()) const
Date previousCashFlowDate (Date d=Date()) const
Public Member Functions inherited from Instrument
Real NPV () const
 returns the net present value of the instrument.
Real errorEstimate () const
 returns the error estimate on the NPV when available.
const DatevaluationDate () const
 returns the date the net present value refers to.
template<typename T>
result (const std::string &tag) const
 returns any additional result returned by the pricing engine.
const std::map< std::string, ext::any > & additionalResults () const
 returns all additional result returned by the pricing engine.
void setPricingEngine (const ext::shared_ptr< PricingEngine > &)
 set the pricing engine to be used.
Public Member Functions inherited from LazyObject
void update () override
bool isCalculated () const
void forwardFirstNotificationOnly ()
void alwaysForwardNotifications ()
void recalculate ()
void freeze ()
void unfreeze ()
Public Member Functions inherited from Observable
 Observable (const Observable &)
Observableoperator= (const Observable &)
 Observable (Observable &&)=delete
Observableoperator= (Observable &&)=delete
void notifyObservers ()
Public Member Functions inherited from Observer
 Observer (const Observer &)
Observeroperator= (const Observer &)
std::pair< iterator, bool > registerWith (const ext::shared_ptr< Observable > &)
void registerWithObservables (const ext::shared_ptr< Observer > &)
Size unregisterWith (const ext::shared_ptr< Observable > &)
void unregisterWithAll ()

Additional Inherited Members

Public Types inherited from Observer
typedef set_type::iterator iterator
void setupExpired () const override
void setupArguments (PricingEngine::arguments *) const override
void fetchResults (const PricingEngine::results *) const override
void addRedemptionsToCashflows (const std::vector< Real > &redemptions=std::vector< Real >())
void setSingleRedemption (Real notional, Real redemption, const Date &date)
void setSingleRedemption (Real notional, const ext::shared_ptr< CashFlow > &redemption)
void calculateNotionalsFromCashflows ()
Protected Member Functions inherited from Instrument
void calculate () const override
void performCalculations () const override
Natural settlementDays_
Calendar calendar_
std::vector< DatenotionalSchedule_
std::vector< Realnotionals_
Leg cashflows_
Leg redemptions_
Date maturityDate_
Date issueDate_
Real settlementValue_
Protected Attributes inherited from Instrument
Real NPV_
Real errorEstimate_
Date valuationDate_
std::map< std::string, ext::any > additionalResults_
ext::shared_ptr< PricingEngineengine_
bool calculated_ = false
bool frozen_ = false
bool alwaysForward_

Detailed Description

Italian CCTEU (Certificato di credito del tesoro) Euribor6M indexed floating rate bond

Member Function Documentation

◆ accruedAmount()

Real accruedAmount ( Date d = Date()) const
overridevirtual

accrued amount at a given date

The default bond settlement is used if no date is given.

Reimplemented from Bond.