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
|
/*
Copyright (C) 2000, 2001, 2002, 2003 RiskMap 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/html/license.html
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.
*/
#ifndef quantlib_cap_floor_i
#define quantlib_cap_floor_i
%include options.i
%include marketelements.i
%include termstructures.i
%include cashflows.i
%include blackmodel.i
%include types.i
%{
using QuantLib::CapFloor;
using QuantLib::Cap;
using QuantLib::Floor;
using QuantLib::Collar;
typedef boost::shared_ptr<Instrument> CapFloorPtr;
typedef boost::shared_ptr<Instrument> CapPtr;
typedef boost::shared_ptr<Instrument> FloorPtr;
typedef boost::shared_ptr<Instrument> CollarPtr;
%}
%rename(CapFloor) CapFloorPtr;
class CapFloorPtr : public boost::shared_ptr<Instrument> {
public:
%extend {
Volatility impliedVolatility(Real price,
Real accuracy = 1.0e-4,
Size maxEvaluations = 100,
Volatility minVol = 1.0e-7,
Volatility maxVol = 4.0) const {
return boost::dynamic_pointer_cast<CapFloor>(*self)->
impliedVolatility(price, accuracy, maxEvaluations,
minVol, maxVol);
}
}
};
%rename(Cap) CapPtr;
class CapPtr : public CapFloorPtr {
public:
%extend {
CapPtr(const std::vector<boost::shared_ptr<CashFlow> >& leg,
const std::vector<Rate>& capRates,
const Handle<YieldTermStructure>& h,
const boost::shared_ptr<PricingEngine>& engine) {
return new CapPtr(new Cap(leg,capRates,h,engine));
}
}
};
%rename(Floor) FloorPtr;
class FloorPtr : public CapFloorPtr {
public:
%extend {
FloorPtr(const std::vector<boost::shared_ptr<CashFlow> >& leg,
const std::vector<Rate>& floorRates,
const Handle<YieldTermStructure>& h,
const boost::shared_ptr<PricingEngine>& engine) {
return new FloorPtr(new Floor(leg,floorRates,h,engine));
}
}
};
%rename(Collar) CollarPtr;
class CollarPtr : public CapFloorPtr {
public:
%extend {
CollarPtr(const std::vector<boost::shared_ptr<CashFlow> >& leg,
const std::vector<Rate>& capRates,
const std::vector<Rate>& floorRates,
const Handle<YieldTermStructure>& h,
const boost::shared_ptr<PricingEngine>& engine) {
return new CollarPtr(new Collar(leg,capRates,floorRates,h,engine));
}
}
};
%{
using QuantLib::BlackCapFloorEngine;
typedef boost::shared_ptr<PricingEngine> BlackCapFloorEnginePtr;
%}
%rename(BlackCapFloorEngine) BlackCapFloorEnginePtr;
class BlackCapFloorEnginePtr : public boost::shared_ptr<PricingEngine> {
public:
%extend {
BlackCapFloorEnginePtr(const boost::shared_ptr<BlackModel>& model) {
return new BlackCapFloorEnginePtr(new BlackCapFloorEngine(model));
}
}
};
#endif
|