HestonOptionPricerParams.java

  1. package org.drip.param.pricer;

  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>HestonOptionPricerParams</i> holds the parameters that drive the dynamics of the Heston stochastic
  81.  * volatility model.
  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/param/README.md">Product Cash Flow, Valuation, Market, Pricing, and Quoting Parameters</a></li>
  88.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/param/pricer/README.md">Pricing Parameters Customization Settings Control</a></li>
  89.  *  </ul>
  90.  *
  91.  * @author Lakshmi Krishnamurthy
  92.  */

  93. public class HestonOptionPricerParams {
  94.     private int _iPayoffTransformScheme = -1;
  95.     private double _dblRho = java.lang.Double.NaN;
  96.     private double _dblKappa = java.lang.Double.NaN;
  97.     private double _dblSigma = java.lang.Double.NaN;
  98.     private double _dblTheta = java.lang.Double.NaN;
  99.     private double _dblLambda = java.lang.Double.NaN;
  100.     private int _iMultiValuePhaseTrackerType =
  101.         org.drip.numerical.fourier.PhaseAdjuster.MULTI_VALUE_BRANCH_POWER_PHASE_TRACKER_KAHL_JACKEL;

  102.     /**
  103.      * HestonOptionPricerParams constructor
  104.      *
  105.      * @param iPayoffTransformScheme The Payoff Transformation Scheme
  106.      * @param dblRho Rho
  107.      * @param dblKappa Kappa
  108.      * @param dblSigma Sigma
  109.      * @param dblTheta Theta
  110.      * @param dblLambda Lambda
  111.      * @param iMultiValuePhaseTrackerType The Multi Valued Phase Tracking Error Corrector
  112.      *
  113.      * @throws java.lang.Exception Thrown if the Inputs are Invalid
  114.      */

  115.     public HestonOptionPricerParams (
  116.         final int iPayoffTransformScheme,
  117.         final double dblRho,
  118.         final double dblKappa,
  119.         final double dblSigma,
  120.         final double dblTheta,
  121.         final double dblLambda,
  122.         final int iMultiValuePhaseTrackerType)
  123.         throws java.lang.Exception
  124.     {
  125.         if (!org.drip.numerical.common.NumberUtil.IsValid (_dblRho = dblRho) ||
  126.             !org.drip.numerical.common.NumberUtil.IsValid (_dblKappa = dblKappa) ||
  127.                 !org.drip.numerical.common.NumberUtil.IsValid (_dblSigma = dblSigma) ||
  128.                     !org.drip.numerical.common.NumberUtil.IsValid (_dblTheta = dblTheta) ||
  129.                         !org.drip.numerical.common.NumberUtil.IsValid (_dblLambda = dblLambda))
  130.             throw new java.lang.Exception ("HestonOptionPricerParams ctr: Invalid Inputs!");

  131.         _iPayoffTransformScheme = iPayoffTransformScheme;
  132.         _iMultiValuePhaseTrackerType = iMultiValuePhaseTrackerType;
  133.     }

  134.     /**
  135.      * Retrieve Kappa
  136.      *
  137.      * @return The Kappa
  138.      */

  139.     public double kappa()
  140.     {
  141.         return _dblKappa;
  142.     }

  143.     /**
  144.      * Retrieve Lambda
  145.      *
  146.      * @return The Lambda
  147.      */

  148.     public double lambda()
  149.     {
  150.         return _dblLambda;
  151.     }

  152.     /**
  153.      * Retrieve Rho
  154.      *
  155.      * @return The Rho
  156.      */

  157.     public double rho()
  158.     {
  159.         return _dblRho;
  160.     }

  161.     /**
  162.      * Retrieve Sigma
  163.      *
  164.      * @return The Sigma
  165.      */

  166.     public double sigma()
  167.     {
  168.         return _dblSigma;
  169.     }

  170.     /**
  171.      * Retrieve Theta
  172.      *
  173.      * @return The Theta
  174.      */

  175.     public double theta()
  176.     {
  177.         return _dblTheta;
  178.     }

  179.     /**
  180.      * Return the Multi Valued Principal Branch Maintaining Phase Tracker Type
  181.      *
  182.      * @return The Multi Valued Principal Branch Maintaining Phase Tracker Type
  183.      */

  184.     public int phaseTrackerType()
  185.     {
  186.         return _iMultiValuePhaseTrackerType;
  187.     }

  188.     /**
  189.      * Return the Payoff Fourier Transformation Scheme
  190.      *
  191.      * @return The Payoff Fourier Transformation Scheme
  192.      */

  193.     public int payoffTransformScheme()
  194.     {
  195.         return _iPayoffTransformScheme;
  196.     }
  197. }