📄 capletcoterminalswaptioncalibration.hpp
字号:
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2007 Ferdinando Ametrano
Copyright (C) 2007 Mark Joshi
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.
*/
#ifndef quantlib_caplet_coterminal_calibration_hpp
#define quantlib_caplet_coterminal_calibration_hpp
#include <ql/models/marketmodels/curvestate.hpp>
#include <ql/models/marketmodels/evolutiondescription.hpp>
#include <ql/models/marketmodels/piecewiseconstantcorrelation.hpp>
#include <boost/shared_ptr.hpp>
#include <vector>
namespace QuantLib {
class PiecewiseConstantVariance;
class Matrix;
class CapletCoterminalSwaptionCalibration {
public:
CapletCoterminalSwaptionCalibration(
const EvolutionDescription& evolution,
const boost::shared_ptr<PiecewiseConstantCorrelation>& corr,
const std::vector<boost::shared_ptr<
PiecewiseConstantVariance> >&
displacedSwapVariances,
const std::vector<Volatility>& capletVols,
const boost::shared_ptr<CurveState>& cs,
Spread displacement);
// modifiers
bool calibrate(Size numberOfFactors,
const std::vector<Real>& alpha,
bool lowestRoot,
bool useFullApprox,
Size maxIterations,
Real tolerance);
// inspectors
Size negativeDiscriminants() const;
Real rmsError() const;
const std::vector<Matrix>& swapPseudoRoots() const;
const Matrix& swapPseudoRoot(Size i) const;
// actual calibration function
static bool calibrationFunction(
const EvolutionDescription& evolution,
const PiecewiseConstantCorrelation& corr,
const std::vector<boost::shared_ptr<
PiecewiseConstantVariance> >&
displacedSwapVariances,
const std::vector<Volatility>& capletVols,
const CurveState& cs,
const Spread displacement,
const Size numberOfFactors,
const std::vector<Real>& alpha,
const bool lowestRoot,
const bool useFullApprox,
std::vector<Matrix>& swapCovariancePseudoRoots,
Size& negativeDiscriminants);
private:
// input
EvolutionDescription evolution_;
boost::shared_ptr<PiecewiseConstantCorrelation> corr_;
std::vector<boost::shared_ptr<PiecewiseConstantVariance> >
displacedSwapVariances_;
std::vector<Volatility> mktCapletVols_;
boost::shared_ptr<CurveState> cs_;
Spread displacement_;
// results
bool calibrated_;
Size negDiscr_;
Real error_;
std::vector<Matrix> swapCovariancePseudoRoots_;
};
}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -