Greeks.java

  1. package org.drip.pricer.option;

  2. /*
  3.  * -*- mode: java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  4.  */

  5. /*!
  6.  * Copyright (C) 2020 Lakshmi Krishnamurthy
  7.  * Copyright (C) 2019 Lakshmi Krishnamurthy
  8.  * Copyright (C) 2018 Lakshmi Krishnamurthy
  9.  * Copyright (C) 2017 Lakshmi Krishnamurthy
  10.  * Copyright (C) 2016 Lakshmi Krishnamurthy
  11.  * Copyright (C) 2015 Lakshmi Krishnamurthy
  12.  * Copyright (C) 2014 Lakshmi Krishnamurthy
  13.  *
  14.  *  This file is part of DROP, an open-source library targeting analytics/risk, transaction cost analytics,
  15.  *      asset liability management analytics, capital, exposure, and margin analytics, valuation adjustment
  16.  *      analytics, and portfolio construction analytics within and across fixed income, credit, commodity,
  17.  *      equity, FX, and structured products. It also includes auxiliary libraries for algorithm support,
  18.  *      numerical analysis, numerical optimization, spline builder, model validation, statistical learning,
  19.  *      and computational support.
  20.  *  
  21.  *      https://lakshmidrip.github.io/DROP/
  22.  *  
  23.  *  DROP is composed of three modules:
  24.  *  
  25.  *  - DROP Product Core - https://lakshmidrip.github.io/DROP-Product-Core/
  26.  *  - DROP Portfolio Core - https://lakshmidrip.github.io/DROP-Portfolio-Core/
  27.  *  - DROP Computational Core - https://lakshmidrip.github.io/DROP-Computational-Core/
  28.  *
  29.  *  DROP Product Core implements libraries for the following:
  30.  *  - Fixed Income Analytics
  31.  *  - Loan Analytics
  32.  *  - Transaction Cost Analytics
  33.  *
  34.  *  DROP Portfolio Core implements libraries for the following:
  35.  *  - Asset Allocation Analytics
  36.  *  - Asset Liability Management Analytics
  37.  *  - Capital Estimation Analytics
  38.  *  - Exposure Analytics
  39.  *  - Margin Analytics
  40.  *  - XVA Analytics
  41.  *
  42.  *  DROP Computational Core implements libraries for the following:
  43.  *  - Algorithm Support
  44.  *  - Computation Support
  45.  *  - Function Analysis
  46.  *  - Model Validation
  47.  *  - Numerical Analysis
  48.  *  - Numerical Optimizer
  49.  *  - Spline Builder
  50.  *  - Statistical Learning
  51.  *
  52.  *  Documentation for DROP is Spread Over:
  53.  *
  54.  *  - Main                     => https://lakshmidrip.github.io/DROP/
  55.  *  - Wiki                     => https://github.com/lakshmiDRIP/DROP/wiki
  56.  *  - GitHub                   => https://github.com/lakshmiDRIP/DROP
  57.  *  - Repo Layout Taxonomy     => https://github.com/lakshmiDRIP/DROP/blob/master/Taxonomy.md
  58.  *  - Javadoc                  => https://lakshmidrip.github.io/DROP/Javadoc/index.html
  59.  *  - Technical Specifications => https://github.com/lakshmiDRIP/DROP/tree/master/Docs/Internal
  60.  *  - Release Versions         => https://lakshmidrip.github.io/DROP/version.html
  61.  *  - Community Credits        => https://lakshmidrip.github.io/DROP/credits.html
  62.  *  - Issues Catalog           => https://github.com/lakshmiDRIP/DROP/issues
  63.  *  - JUnit                    => https://lakshmidrip.github.io/DROP/junit/index.html
  64.  *  - Jacoco                   => https://lakshmidrip.github.io/DROP/jacoco/index.html
  65.  *
  66.  *  Licensed under the Apache License, Version 2.0 (the "License");
  67.  *      you may not use this file except in compliance with the License.
  68.  *  
  69.  *  You may obtain a copy of the License at
  70.  *      http://www.apache.org/licenses/LICENSE-2.0
  71.  *  
  72.  *  Unless required by applicable law or agreed to in writing, software
  73.  *      distributed under the License is distributed on an "AS IS" BASIS,
  74.  *      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  75.  *  
  76.  *  See the License for the specific language governing permissions and
  77.  *      limitations under the License.
  78.  */

  79. /**
  80.  * <i>Greeks</i> contains the Sensitivities/Pricing Measures common across both Call and Put Option Pricing
  81.  * Runs.
  82.  *
  83.  *  <br><br>
  84.  *  <ul>
  85.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ProductCore.md">Product Core Module</a></li>
  86.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/FixedIncomeAnalyticsLibrary.md">Fixed Income Analytics</a></li>
  87.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/pricer/README.md">Custom Pricing Algorithms and the Derivative Fokker Planck Trajectory Generators</a></li>
  88.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/pricer/option/README.md">Deterministic/Stochastic Volatility Settings/Greeks</a></li>
  89.  *  </ul>
  90.  * <br><br>
  91.  *
  92.  * @author Lakshmi Krishnamurthy
  93.  */

  94. public class Greeks {
  95.     private double _dblDF = java.lang.Double.NaN;
  96.     private double _dblRho = java.lang.Double.NaN;
  97.     private double _dblVega = java.lang.Double.NaN;
  98.     private double _dblVeta = java.lang.Double.NaN;
  99.     private double _dblCharm = java.lang.Double.NaN;
  100.     private double _dblColor = java.lang.Double.NaN;
  101.     private double _dblDelta = java.lang.Double.NaN;
  102.     private double _dblGamma = java.lang.Double.NaN;
  103.     private double _dblPrice = java.lang.Double.NaN;
  104.     private double _dblProb1 = java.lang.Double.NaN;
  105.     private double _dblProb2 = java.lang.Double.NaN;
  106.     private double _dblSpeed = java.lang.Double.NaN;
  107.     private double _dblTheta = java.lang.Double.NaN;
  108.     private double _dblVanna = java.lang.Double.NaN;
  109.     private double _dblVomma = java.lang.Double.NaN;
  110.     private double _dblUltima = java.lang.Double.NaN;
  111.     private double _dblExpectedPayoff = java.lang.Double.NaN;
  112.     private double _dblExpectedATMPayoff = java.lang.Double.NaN;
  113.     private double _dblEffectiveVolatility = java.lang.Double.NaN;

  114.     /**
  115.      * The Greeks Constructor
  116.      *
  117.      * @param dblDF The Payoff Discount Factor
  118.      * @param dblEffectiveVolatility Effective Volatility
  119.      * @param dblExpectedPayoff Expected Forward Payoff
  120.      * @param dblExpectedATMPayoff Expected ATM Forward Payoff
  121.      * @param dblPrice Price
  122.      * @param dblProb1 Probability Term #1
  123.      * @param dblProb2 Probability Term #2
  124.      * @param dblDelta Delta
  125.      * @param dblVega Vega
  126.      * @param dblTheta Theta
  127.      * @param dblRho Rho
  128.      * @param dblGamma Gamma
  129.      * @param dblVanna Vanna
  130.      * @param dblVomma Vomma
  131.      * @param dblCharm Charm
  132.      * @param dblVeta Veta
  133.      * @param dblColor Color
  134.      * @param dblSpeed Speed
  135.      * @param dblUltima Ultima
  136.      *
  137.      * @throws java.lang.Exception Thrown if the Inputs are Invalid
  138.      */

  139.     public Greeks (
  140.         final double dblDF,
  141.         final double dblEffectiveVolatility,
  142.         final double dblExpectedPayoff,
  143.         final double dblExpectedATMPayoff,
  144.         final double dblPrice,
  145.         final double dblProb1,
  146.         final double dblProb2,
  147.         final double dblDelta,
  148.         final double dblVega,
  149.         final double dblTheta,
  150.         final double dblRho,
  151.         final double dblGamma,
  152.         final double dblVanna,
  153.         final double dblVomma,
  154.         final double dblCharm,
  155.         final double dblVeta,
  156.         final double dblColor,
  157.         final double dblSpeed,
  158.         final double dblUltima)
  159.         throws java.lang.Exception
  160.     {
  161.         if (!org.drip.numerical.common.NumberUtil.IsValid (_dblDF = dblDF) ||
  162.             !org.drip.numerical.common.NumberUtil.IsValid (_dblEffectiveVolatility = dblEffectiveVolatility))
  163.             throw new java.lang.Exception ("Greeks ctr: Invalid Inputs");

  164.         _dblExpectedPayoff = dblExpectedPayoff;
  165.         _dblExpectedATMPayoff = dblExpectedATMPayoff;
  166.         _dblPrice = dblPrice;
  167.         _dblProb1 = dblProb1;
  168.         _dblProb2 = dblProb2;
  169.         _dblDelta = dblDelta;
  170.         _dblVega = dblVega;
  171.         _dblTheta = dblTheta;
  172.         _dblRho = dblRho;
  173.         _dblGamma = dblGamma;
  174.         _dblVanna = dblVanna;
  175.         _dblVomma = dblVomma;
  176.         _dblCharm = dblCharm;
  177.         _dblVeta = dblVeta;
  178.         _dblColor = dblColor;
  179.         _dblSpeed = dblSpeed;
  180.         _dblUltima = dblUltima;
  181.     }

  182.     /**
  183.      * The Option Terminal Discount Factor
  184.      *
  185.      * @return The Option Terminal Discount Factor
  186.      */

  187.     public double df()
  188.     {
  189.         return _dblDF;
  190.     }

  191.     /**
  192.      * The "Effective" Volatility
  193.      *
  194.      * @return The "Effective" Volatility
  195.      */

  196.     public double effectiveVolatility()
  197.     {
  198.         return _dblEffectiveVolatility;
  199.     }

  200.     /**
  201.      * The Expected Payoff
  202.      *
  203.      * @return The Expected Payoff
  204.      */

  205.     public double expectedPayoff()
  206.     {
  207.         return _dblExpectedPayoff;
  208.     }

  209.     /**
  210.      * The Expected ATM Payoff
  211.      *
  212.      * @return The Expected ATM Payoff
  213.      */

  214.     public double expectedATMPayoff()
  215.     {
  216.         return _dblExpectedATMPayoff;
  217.     }

  218.     /**
  219.      * The Option Price
  220.      *
  221.      * @return The Option Price
  222.      */

  223.     public double price()
  224.     {
  225.         return _dblPrice;
  226.     }

  227.     /**
  228.      * The Prob 1 Term
  229.      *
  230.      * @return The Prob 1 Term
  231.      */

  232.     public double prob1()
  233.     {
  234.         return _dblProb1;
  235.     }

  236.     /**
  237.      * The Prob 2 Term
  238.      *
  239.      * @return The Prob 2 Term
  240.      */

  241.     public double prob2()
  242.     {
  243.         return _dblProb2;
  244.     }

  245.     /**
  246.      * The Option Delta
  247.      *
  248.      * @return The Option Delta
  249.      */

  250.     public double delta()
  251.     {
  252.         return _dblDelta;
  253.     }

  254.     /**
  255.      * The Option Vega
  256.      *
  257.      * @return The Option Vega
  258.      */

  259.     public double vega()
  260.     {
  261.         return _dblVega;
  262.     }

  263.     /**
  264.      * The Option Theta
  265.      *
  266.      * @return The Option Theta
  267.      */

  268.     public double theta()
  269.     {
  270.         return _dblTheta;
  271.     }

  272.     /**
  273.      * The Option Rho
  274.      *
  275.      * @return The Option Rho
  276.      */

  277.     public double rho()
  278.     {
  279.         return _dblRho;
  280.     }

  281.     /**
  282.      * The Option Gamma
  283.      *
  284.      * @return The Option Gamma
  285.      */

  286.     public double gamma()
  287.     {
  288.         return _dblGamma;
  289.     }

  290.     /**
  291.      * The Option Vanna
  292.      *
  293.      * @return The Option Vanna
  294.      */

  295.     public double vanna()
  296.     {
  297.         return _dblVanna;
  298.     }

  299.     /**
  300.      * The Option Vomma
  301.      *
  302.      * @return The Option Vomma
  303.      */

  304.     public double vomma()
  305.     {
  306.         return _dblVomma;
  307.     }

  308.     /**
  309.      * The Option Charm
  310.      *
  311.      * @return The Option Charm
  312.      */

  313.     public double charm()
  314.     {
  315.         return _dblCharm;
  316.     }

  317.     /**
  318.      * The Option Veta
  319.      *
  320.      * @return The Option Veta
  321.      */

  322.     public double veta()
  323.     {
  324.         return _dblVeta;
  325.     }

  326.     /**
  327.      * The Option Color
  328.      *
  329.      * @return The Option Color
  330.      */

  331.     public double color()
  332.     {
  333.         return _dblColor;
  334.     }

  335.     /**
  336.      * The Option Speed
  337.      *
  338.      * @return The Option Speed
  339.      */

  340.     public double speed()
  341.     {
  342.         return _dblSpeed;
  343.     }

  344.     /**
  345.      * The Option Ultima
  346.      *
  347.      * @return The Option Ultima
  348.      */

  349.     public double ultima()
  350.     {
  351.         return _dblUltima;
  352.     }
  353. }