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


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 Event
    boolean containsEvent​(java.lang.String eventName)
    Check if the Stress Event Exists
    Event event​(java.lang.String eventName)
    Retrieve the Stress Event
    java.util.Map<java.lang.String,​Event> eventMap()
    Retrieve the Stress Event Map
    EventProbabilityLadder eventProbabilityLadder()
    Retrieve the Scenario Probability Event Ladder
    java.util.Set<java.lang.String> eventSet()
    Retrieve the Stress Event Set
    java.lang.String eventType()
    Retrieve the Stress Event Type
    StressEventIncidenceEnsemble realizeIncidenceEnsemble​(double stressPnLScaler, double randomEventIndicator)
    Realize a Stress Event Incidence Ensemble

    Methods 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

      public boolean addEvent​(Event event)
      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

      public Event event​(java.lang.String eventName)
      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 Scaler
      randomEventIndicator - Random Stress Event Indicator
      Returns:
      Realized Stress Event Incidence Ensemble
    • eventMap

      public java.util.Map<java.lang.String,​Event> eventMap()
      Retrieve the Stress Event Map
      Returns:
      The Stress Event Map
    • eventProbabilityLadder

      public EventProbabilityLadder eventProbabilityLadder()
      Retrieve the Scenario Probability Event Ladder
      Returns:
      The Scenario Probability Event Ladder