swaptionvolcube.cpp
来自「有很多的函数库」· C++ 代码 · 共 101 行
CPP
101 行
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2006 Ferdinando Ametrano
Copyright (C) 2006 Katiuscia Manzoni
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.
*/
#include <ql/termstructures/volatilities/swaptionvolcube.hpp>
#include <ql/utilities/dataformatters.hpp>
namespace QuantLib {
SwaptionVolatilityCube::SwaptionVolatilityCube(
const Handle<SwaptionVolatilityStructure>& atmVol,
const std::vector<Period>& optionTenors,
const std::vector<Period>& swapTenors,
const std::vector<Spread>& strikeSpreads,
const std::vector<std::vector<Handle<Quote> > >& volSpreads,
const boost::shared_ptr<SwapIndex>& swapIndexBase,
bool vegaWeightedSmileFit)
: SwaptionVolatilityDiscrete(optionTenors, swapTenors, 0,
atmVol->calendar(),
atmVol->dayCounter(),
atmVol->businessDayConvention()),
atmVol_(atmVol),
nStrikes_(strikeSpreads.size()),
strikeSpreads_(strikeSpreads),
localStrikes_(nStrikes_),
localSmile_(nStrikes_),
volSpreads_(volSpreads),
swapIndexBase_(swapIndexBase),
vegaWeightedSmileFit_(vegaWeightedSmileFit)
{
QL_REQUIRE(nStrikes_>1, "too few strikes (" << nStrikes_ << ")");
for (Size i=1; i<nStrikes_; i++) {
QL_REQUIRE(strikeSpreads_[i-1]<strikeSpreads_[i],
"non increasing strike spreads");
}
QL_REQUIRE(!volSpreads_.empty(), "empty vol spreads matrix");
QL_REQUIRE(nOptionTenors_*nSwapTenors_==volSpreads_.size(),
"mismatch between number of option tenors * swap tenors (" <<
nOptionTenors_*nSwapTenors_ << ") and number of rows (" <<
volSpreads_.size() << ")");
for (Size i=0; i<volSpreads_.size(); i++)
QL_REQUIRE(nStrikes_==volSpreads_[i].size(),
"mismatch between number of strikes (" << nStrikes_ <<
") and number of columns (" << volSpreads_[i].size() <<
") in the " << io::ordinal(i) << " row");
registerWith(atmVol_);
atmVol_->enableExtrapolation();
// register with SwapIndexBase
if (!swapIndexBase_)
registerWith(swapIndexBase_);
registerWithVolatilitySpread();
}
void SwaptionVolatilityCube::registerWithVolatilitySpread()
{
for (Size i=0; i<nStrikes_; i++)
for (Size j=0; j<nOptionTenors_; j++)
for (Size k=0; k<nSwapTenors_; k++)
registerWith(volSpreads_[j*nSwapTenors_+k][i]);
}
Rate SwaptionVolatilityCube::atmStrike(const Date& optionDate,
const Period& swapTenor) const {
// FIXME use a familyName-based index factory
return SwapIndex(swapIndexBase_->familyName(),
swapTenor,
swapIndexBase_->fixingDays(),
swapIndexBase_->currency(),
swapIndexBase_->fixingCalendar(),
swapIndexBase_->fixedLegTenor(),
swapIndexBase_->fixedLegConvention(),
swapIndexBase_->dayCounter(),
swapIndexBase_->iborIndex()).fixing(optionDate);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?