Package org.drip.simm.credit
Class CRThresholdContainer20
java.lang.Object
org.drip.simm.credit.CRThresholdContainer20
public class CRThresholdContainer20
extends java.lang.Object
CRThresholdContainer20 holds the ISDA SIMM 2.0 Credit Risk Thresholds - the Credit Risk Buckets and
the Delta/Vega Limits defined for the Concentration Thresholds. The References are:
- Andersen, L. B. G., M. Pykhtin, and A. Sokol (2017): Credit Exposure in the Presence of Initial Margin https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2806156 eSSRN
- Albanese, C., S. Caenazzo, and O. Frankel (2017): Regression Sensitivities for Initial Margin Calculations https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2763488 eSSRN
- Anfuso, F., D. Aziz, P. Giltinan, and K. Loukopoulus (2017): A Sound Modeling and Back-testing Framework for Forecasting Initial Margin Requirements https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2716279 eSSRN
- Caspers, P., P. Giltinan, R. Lichters, and N. Nowaczyk (2017): Forecasting Initial Margin Requirements - A Model Evaluation https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2911167 eSSRN
- International Swaps and Derivatives Association (2017): SIMM v2.0 Methodology https://www.isda.org/a/oFiDE/isda-simm-v2.pdf
- Initialize the Credit Risk Threshold Container
- Retrieve the Credit Risk Qualifying Threshold Bucket Set
- Retrieve the Credit Risk Non-Qualifying Threshold Bucket Set
- Indicate if the Qualifying Bucket specified by the Number is available
- Indicate if the Non-Qualifying Bucket specified by the Number is available
- Retrieve the Credit Risk Qualifying Threshold Instance identified by the Bucket Number
- Retrieve the Credit Risk Non-Qualifying Threshold Instance identified by the Bucket Number
- Retrieve the Credit Risk Qualifying Threshold Map
- Retrieve the Credit Risk Non-Qualifying Threshold Map
- Author:
- Lakshmi Krishnamurthy
-
Constructor Summary
Constructors Constructor Description CRThresholdContainer20()
-
Method Summary
Modifier and Type Method Description static boolean
ContainsNonQualifyingBucket(int bucketNumber)
Indicate if the Non-Qualifying Bucket specified by the Number is availablestatic boolean
ContainsQualifyingBucket(int bucketNumber)
Indicate if the Qualifying Bucket specified by the Number is availablestatic java.util.Map<java.lang.Integer,DeltaVegaThreshold>
CreditRiskNonQualifyingThresholdMap()
Retrieve the Credit Risk Non-Qualifying Threshold Mapstatic java.util.Map<java.lang.Integer,DeltaVegaThreshold>
CreditRiskQualifyingThresholdMap()
Retrieve the Credit Risk Qualifying Threshold Mapstatic boolean
Init()
Initialize the Credit Risk Threshold Containerstatic java.util.Set<java.lang.Integer>
NonQualifyingBucketSet()
Retrieve the Credit Risk Non-Qualifying Threshold Bucket Setstatic DeltaVegaThreshold
NonQualifyingThreshold(int bucketNumber)
Retrieve the Credit Risk Non-Qualifying Threshold Instance identified by the Bucket Numberstatic java.util.Set<java.lang.Integer>
QualifyingBucketSet()
Retrieve the Credit Risk Qualifying Threshold Bucket Setstatic DeltaVegaThreshold
QualifyingThreshold(int bucketNumber)
Retrieve the Credit Risk Qualifying Threshold Instance identified by the Bucket NumberMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
CRThresholdContainer20
public CRThresholdContainer20()
-
-
Method Details
-
Init
public static final boolean Init()Initialize the Credit Risk Threshold Container- Returns:
- TRUE - The Credit Risk Threshold Container successfully initialized
-
QualifyingBucketSet
public static final java.util.Set<java.lang.Integer> QualifyingBucketSet()Retrieve the Credit Risk Qualifying Threshold Bucket Set- Returns:
- The Credit Risk Qualifying Threshold Bucket Set
-
NonQualifyingBucketSet
public static final java.util.Set<java.lang.Integer> NonQualifyingBucketSet()Retrieve the Credit Risk Non-Qualifying Threshold Bucket Set- Returns:
- The Credit Risk Non-Qualifying Threshold Bucket Set
-
ContainsQualifyingBucket
public static final boolean ContainsQualifyingBucket(int bucketNumber)Indicate if the Qualifying Bucket specified by the Number is available- Parameters:
bucketNumber
- The Qualifying Bucket Number- Returns:
- TRUE - The Qualifying Bucket specified by the Number is available
-
ContainsNonQualifyingBucket
public static final boolean ContainsNonQualifyingBucket(int bucketNumber)Indicate if the Non-Qualifying Bucket specified by the Number is available- Parameters:
bucketNumber
- The Non-Qualifying Bucket Number- Returns:
- TRUE - The Non-Qualifying Bucket specified by the Number is available
-
QualifyingThreshold
Retrieve the Credit Risk Qualifying Threshold Instance identified by the Bucket Number- Parameters:
bucketNumber
- The Bucket Number- Returns:
- The Credit Risk Qualifying Threshold Instance identified by the Bucket Number
-
NonQualifyingThreshold
Retrieve the Credit Risk Non-Qualifying Threshold Instance identified by the Bucket Number- Parameters:
bucketNumber
- The Bucket Number- Returns:
- The Credit Risk Non-Qualifying Threshold Instance identified by the Bucket Number
-
CreditRiskQualifyingThresholdMap
public static final java.util.Map<java.lang.Integer,DeltaVegaThreshold> CreditRiskQualifyingThresholdMap()Retrieve the Credit Risk Qualifying Threshold Map- Returns:
- The Credit Risk Qualifying Threshold Map
-
CreditRiskNonQualifyingThresholdMap
public static final java.util.Map<java.lang.Integer,DeltaVegaThreshold> CreditRiskNonQualifyingThresholdMap()Retrieve the Credit Risk Non-Qualifying Threshold Map- Returns:
- The Credit Risk Non-Qualifying Threshold Map
-