/usr/include/ql/experimental/convertiblebonds/binomialconvertibleengine.hpp is in libquantlib0-dev 1.7.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /* -*- 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
<http://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 binomialconvertibleengine.hpp
\brief binomial engine for convertible bonds
*/
#ifndef quantlib_binomial_convertible_engine_hpp
#define quantlib_binomial_convertible_engine_hpp
#include <ql/experimental/convertiblebonds/discretizedconvertible.hpp>
#include <ql/experimental/convertiblebonds/convertiblebond.hpp>
#include <ql/experimental/convertiblebonds/tflattice.hpp>
#include <ql/processes/blackscholesprocess.hpp>
#include <ql/termstructures/yield/flatforward.hpp>
#include <ql/termstructures/volatility/equityfx/blackconstantvol.hpp>
#include <ql/instruments/payoffs.hpp>
namespace QuantLib {
//! Binomial Tsiveriotis-Fernandes engine for convertible bonds
/* \ingroup hybridengines
\test the correctness of the returned value is tested by
checking it against known results in a few corner cases.
*/
template <class T>
class BinomialConvertibleEngine : public ConvertibleBond::option::engine {
public:
BinomialConvertibleEngine(
const boost::shared_ptr<GeneralizedBlackScholesProcess>& process,
Size timeSteps)
: process_(process), timeSteps_(timeSteps) {
QL_REQUIRE(timeSteps>0,
"timeSteps must be positive, " << timeSteps <<
" not allowed");
registerWith(process_);
}
void calculate() const;
private:
boost::shared_ptr<GeneralizedBlackScholesProcess> process_;
Size timeSteps_;
};
template <class T>
void BinomialConvertibleEngine<T>::calculate() const {
DayCounter rfdc = process_->riskFreeRate()->dayCounter();
DayCounter divdc = process_->dividendYield()->dayCounter();
DayCounter voldc = process_->blackVolatility()->dayCounter();
Calendar volcal = process_->blackVolatility()->calendar();
Real s0 = process_->x0();
QL_REQUIRE(s0 > 0.0, "negative or null underlying");
Volatility v = process_->blackVolatility()->blackVol(
arguments_.exercise->lastDate(), s0);
Date maturityDate = arguments_.exercise->lastDate();
Rate riskFreeRate = process_->riskFreeRate()->zeroRate(
maturityDate, rfdc, Continuous, NoFrequency);
Rate q = process_->dividendYield()->zeroRate(
maturityDate, divdc, Continuous, NoFrequency);
Date referenceDate = process_->riskFreeRate()->referenceDate();
// subtract dividends
Size i;
for (i=0; i<arguments_.dividends.size(); i++) {
if (arguments_.dividends[i]->date() >= referenceDate)
s0 -= arguments_.dividends[i]->amount() *
process_->riskFreeRate()->discount(
arguments_.dividends[i]->date());
}
QL_REQUIRE(s0 > 0.0,
"negative value after subtracting dividends");
// binomial trees with constant coefficient
Handle<Quote> underlying(boost::shared_ptr<Quote>(new SimpleQuote(s0)));
Handle<YieldTermStructure> flatRiskFree(
boost::shared_ptr<YieldTermStructure>(
new FlatForward(referenceDate, riskFreeRate, rfdc)));
Handle<YieldTermStructure> flatDividends(
boost::shared_ptr<YieldTermStructure>(
new FlatForward(referenceDate, q, divdc)));
Handle<BlackVolTermStructure> flatVol(
boost::shared_ptr<BlackVolTermStructure>(
new BlackConstantVol(referenceDate, volcal, v, voldc)));
boost::shared_ptr<PlainVanillaPayoff> payoff =
boost::dynamic_pointer_cast<PlainVanillaPayoff>(arguments_.payoff);
QL_REQUIRE(payoff, "non-plain payoff given");
Time maturity = rfdc.yearFraction(arguments_.settlementDate,
maturityDate);
boost::shared_ptr<GeneralizedBlackScholesProcess> bs(
new GeneralizedBlackScholesProcess(underlying, flatDividends,
flatRiskFree, flatVol));
boost::shared_ptr<T> tree(new T(bs, maturity, timeSteps_,
payoff->strike()));
Real creditSpread = arguments_.creditSpread->value();
boost::shared_ptr<Lattice> lattice(
new TsiveriotisFernandesLattice<T>(tree,riskFreeRate,maturity,
timeSteps_,creditSpread,v,q));
DiscretizedConvertible convertible(arguments_, bs,
TimeGrid(maturity, timeSteps_));
convertible.initialize(lattice, maturity);
convertible.rollback(0.0);
results_.value = convertible.presentValue();
QL_ENSURE(results_.value < std::numeric_limits<Real>::max(),
"floating-point overflow on tree grid");
}
}
#endif
|