Package org.drip.capital.stress
Class SystemicEventContainer
java.lang.Object
org.drip.capital.stress.SystemicEventContainer
public class SystemicEventContainer
extends java.lang.Object
SystemicEventContainer contains the Scenario Stress Events' Specifications of the Systemic Stress
Scenario Event Type that belong inside of a single Coordinate. The References are:
- Bank for International Supervision(2005): Stress Testing at Major Financial Institutions: Survey Results and Practice https://www.bis.org/publ/cgfs24.htm
- Glasserman, P. (2004): Monte Carlo Methods in Financial Engineering Springer
- Kupiec, P. H. (2000): Stress Tests and Risk Capital Risk 2 (4) 27-39
- Module = Portfolio Core Module
- Library = Capital Analytics
- Project = Basel Market Risk and Operational Capital
- Package = Economic Risk Capital Stress Event Settings
- Author:
- Lakshmi Krishnamurthy
-
Constructor Summary
Constructors Constructor Description SystemicEventContainer()
Empty SystemicEventContainer Constructor -
Method Summary
Modifier and Type Method Description boolean
addEvent(Event event)
Add the Specified Stress Eventboolean
containsEvent(java.lang.String eventName)
Check if the Stress Event ExistsEvent
event(java.lang.String eventName)
Retrieve the Stress Eventjava.util.Map<java.lang.String,Event>
eventMap()
Retrieve the Stress Event MapEventProbabilityLadder
eventProbabilityLadder()
Retrieve the Scenario Probability Event Ladderjava.util.Set<java.lang.String>
eventSet()
Retrieve the Stress Event Setjava.lang.String
eventType()
Retrieve the Stress Event TypeStressEventIncidenceEnsemble
realizeIncidenceEnsemble(double stressPnLScaler, double randomEventIndicator)
Realize a Stress Event Incidence EnsembleMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
SystemicEventContainer
public SystemicEventContainer()Empty SystemicEventContainer Constructor
-
-
Method Details
-
eventType
public java.lang.String eventType()Retrieve the Stress Event Type- Returns:
- The Stress Event Type
-
addEvent
Add the Specified Stress Event- Parameters:
event
- The Stress Event- Returns:
- TRUE - The Stress Event successfully added
-
containsEvent
public boolean containsEvent(java.lang.String eventName)Check if the Stress Event Exists- Parameters:
eventName
- The Stress Event Name- Returns:
- TRUE - The Stress Event exists
-
event
Retrieve the Stress Event- Parameters:
eventName
- The Stress Event Name- Returns:
- The Stress Event
-
eventSet
public java.util.Set<java.lang.String> eventSet()Retrieve the Stress Event Set- Returns:
- The Stress Event Set
-
realizeIncidenceEnsemble
public StressEventIncidenceEnsemble realizeIncidenceEnsemble(double stressPnLScaler, double randomEventIndicator)Realize a Stress Event Incidence Ensemble- Parameters:
stressPnLScaler
- The Stress PnL ScalerrandomEventIndicator
- Random Stress Event Indicator- Returns:
- Realized Stress Event Incidence Ensemble
-
eventMap
Retrieve the Stress Event Map- Returns:
- The Stress Event Map
-
eventProbabilityLadder
Retrieve the Scenario Probability Event Ladder- Returns:
- The Scenario Probability Event Ladder
-