QuantLib: a free/open-source library for quantitative finance
Reference manual - version 1.40
Loading...
Searching...
No Matches
DefaultLatentModel< copulaPolicy > Class Template Reference

Default event Latent Model. More...

#include <ql/experimental/credit/defaultprobabilitylatentmodel.hpp>

Inheritance diagram for DefaultLatentModel< copulaPolicy >:

Public Member Functions

 DefaultLatentModel (const std::vector< std::vector< Real > > &factorWeights, LatentModelIntegrationType::LatentModelIntegrationType integralType, const initTraits &ini=initTraits())
 DefaultLatentModel (const Handle< Quote > &mktCorrel, Size nVariables, LatentModelIntegrationType::LatentModelIntegrationType integralType, const initTraits &ini=initTraits())
void resetBasket (const ext::shared_ptr< Basket > &basket) const
Probability conditionalDefaultProbability (Probability prob, Size iName, const std::vector< Real > &mktFactors) const
Probability conditionalDefaultProbabilityInvP (Real invCumYProb, Size iName, const std::vector< Real > &m) const
Probability probOfDefault (Size iName, const Date &d) const
Real defaultCorrelation (const Date &d, Size iNamei, Size iNamej) const
Probability probAtLeastNEvents (Size n, const Date &date) const
Public Member Functions inherited from LatentModel< copulaPolicy >
void update () override
Size size () const
Size numFactors () const
 Number of systemic factors.
Size numTotalFactors () const
 Number of total free random factors; systemic and idiosyncratic.
 LatentModel (const std::vector< std::vector< Real > > &factorsWeights, const typename copulaType::initTraits &ini=typename copulaType::initTraits())
const std::vector< std::vector< Real > > & factorWeights () const
 Provides values of the factors \( a_{i,k} \).
const std::vector< Real > & idiosyncFctrs () const
 Provides values of the normalized idiosyncratic factors \( Z_i \).
Real latentVariableCorrel (Size iVar1, Size iVar2) const
 Latent variable correlations:
Probability cumulativeY (Real val, Size iVariable) const
Probability cumulativeZ (Real z) const
 Cumulative distribution of Z, the idiosyncratic/error factors.
Probability density (const std::vector< Real > &m) const
 Density function of M, the market/systemic factors.
Real inverseCumulativeDensity (Probability p, Size iFactor) const
 Inverse cumulative distribution of the systemic factor iFactor.
Real inverseCumulativeY (Probability p, Size iVariable) const
Real inverseCumulativeZ (Probability p) const
std::vector< RealallFactorCumulInverter (const std::vector< Real > &probs) const
Real latentVarValue (const std::vector< Real > &allFactors, Size iVar) const
const copulaType & copula () const
Real integratedExpectedValue (const std::function< Real(const std::vector< Real > &v1)> &f) const
std::vector< RealintegratedExpectedValueV (const std::function< std::vector< Real >(const std::vector< Real > &v1)> &f) const
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 ()
virtual void deepUpdate ()
Public Member Functions inherited from Observable
 Observable (const Observable &)
Observableoperator= (const Observable &)
 Observable (Observable &&)=delete
Observableoperator= (Observable &&)=delete
void notifyObservers ()

Protected Member Functions

void update () override
Probability conditionalDefaultProbability (const Date &date, Size iName, const std::vector< Real > &mktFactors) const
Probability condProbProduct (Real invCumYProb1, Real invCumYProb2, Size iName1, Size iName2, const std::vector< Real > &mktFactors) const
Real conditionalProbAtLeastNEvents (Size n, const Date &date, const std::vector< Real > &mktFactors) const
 Conditional probability of n default events or more.
const ext::shared_ptr< LMIntegration > & integration () const override
 access to integration:

Protected Attributes

ext::shared_ptr< Basketbasket_
ext::shared_ptr< LMIntegration > integration_
std::vector< std::vector< Real > > factorWeights_
Handle< QuotecachedMktFactor_
std::vector< RealidiosyncFctrs_
Size nFactors_
 Number of systemic factors.
Size nVariables_
 Number of latent model variables, idiosyncratic terms or model dim.
copulaType copula_

Additional Inherited Members

typedef copulaPolicy copulaType
Public Types inherited from Observer
typedef set_type::iterator iterator

Detailed Description

template<class copulaPolicy>
class QuantLib::DefaultLatentModel< copulaPolicy >

Default event Latent Model.

This is a model for joint default events based on a generic Latent Model. It models solely the default events in a portfolio, not making any reference to severities, exposures, etc... An implicit correspondence is stablished between the variables modelled and the names in the basket given by the basket and model variable access indices. The class is parametric on the Latent Model copula.

Constructor & Destructor Documentation

◆ DefaultLatentModel()

template<class copulaPolicy>
DefaultLatentModel ( const std::vector< std::vector< Real > > & factorWeights,
LatentModelIntegrationType::LatentModelIntegrationType integralType,
const initTraits & ini = initTraits() )
Parameters
factorWeightsLatent model independent factors weights for each variable.
integralTypeIntegration type.
iniCopula initialization if any.
Warning
Baskets with realized defaults not tested/WIP.

Member Function Documentation

◆ conditionalDefaultProbability() [1/2]

template<class copulaPolicy>
Probability conditionalDefaultProbability ( Probability prob,
Size iName,
const std::vector< Real > & mktFactors ) const

Returns the probability of default of a given name conditional on the realization of a given set of values of the model independent factors. The date at which the probability is given is implicit in the probability since theres not other time dependence in this model.

Parameters
probUnconditional probability of default.
iNamedesired name.
mktFactorsValue of LM independent factors.
Warning
Most often it is preferred to use the method below avoiding the cumulative inversion.

◆ update()

template<class copulaPolicy>
void update ( )
overrideprotectedvirtual

This method must be implemented in derived classes. An instance of Observer does not call this method directly: instead, it will be called by the observables the instance registered with when they need to notify any changes.

Implements Observer.

◆ conditionalDefaultProbabilityInvP()

template<class copulaPolicy>
Probability conditionalDefaultProbabilityInvP ( Real invCumYProb,
Size iName,
const std::vector< Real > & m ) const

Returns the probability of default of a given name conditional on the realization of a given set of values of the model independent factors. The date at which the probability is given is implicit in the probability since theres not other time dependent in this model. Same intention as above but provides a performance opportunity, if the integration is along the market factors (as usually is) avoids computing the inverse of the probability on each call.

Parameters
invCumYProbInverse cumul of the unconditional probability of default, has to follow the same copula law for results to be coherent
iNamedesired name.
mValue of LM independent factors.

◆ conditionalDefaultProbability() [2/2]

template<class copulaPolicy>
Probability conditionalDefaultProbability ( const Date & date,
Size iName,
const std::vector< Real > & mktFactors ) const
protected

Returns the probability of default of a given name conditional on the realization of a given set of values of the model independent factors.

Parameters
dateThe date for the probability of default.
iNamedesired name.
mktFactorsValue of LM independent factors.

Same intention as the above methods. Usage of this one is typically more expensive because most often the date we call this method with repeats itself and with this one the probability can not be cached outside the call.

◆ condProbProduct()

template<class copulaPolicy>
Probability condProbProduct ( Real invCumYProb1,
Real invCumYProb2,
Size iName1,
Size iName2,
const std::vector< Real > & mktFactors ) const
protected

Conditional default probability product, intermediate step in the correlation calculation.

◆ integration()

template<class copulaPolicy>
const ext::shared_ptr< LMIntegration > & integration ( ) const
overrideprotectedvirtual

access to integration:

Reimplemented from LatentModel< copulaPolicy >.

◆ probOfDefault()

template<class copulaPolicy>
Probability probOfDefault ( Size iName,
const Date & d ) const

Computes the unconditional probability of default of a given name. Trivial method for testing

◆ defaultCorrelation()

template<class CP>
Real defaultCorrelation ( const Date & d,
Size iNamei,
Size iNamej ) const

Pearsons' default probability correlation. Users should consider specialization on the copula type for specific distributions since that might simplify the integrations, most importantly if this is to be used in calibration of observations for factor coefficients as it is expensive to integrate directly.

◆ probAtLeastNEvents()

template<class copulaPolicy>
Probability probAtLeastNEvents ( Size n,
const Date & date ) const

Returns the probaility of having a given or larger number of defaults in the basket portfolio at a given time.