Package org.drip.execution.latent
Class OrnsteinUhlenbeckSequence
java.lang.Object
org.drip.execution.latent.OrnsteinUhlenbeckSequence
public class OrnsteinUhlenbeckSequence
extends java.lang.Object
OrnsteinUhlenbeckSequence holds the Sequence of the Market State that drives the Liquidity and the
Volatility Market States driven using an Ornstein-Uhlenbeck Process. The References are:
- Almgren, R. F., and N. Chriss (2000): Optimal Execution of Portfolio Transactions Journal of Risk 3 (2) 5-39
- Almgren, R. F. (2009): Optimal Trading in a Dynamic Market https://www.math.nyu.edu/financial_mathematics/content/02_financial/2009-2.pdf
- Almgren, R. F. (2012): Optimal Trading with Stochastic Liquidity and Volatility SIAM Journal of Financial Mathematics 3 (1) 163-181
- Geman, H., D. B. Madan, and M. Yor (2001): Time Changes for Levy Processes Mathematical Finance 11 (1) 79-96
- Jones, C. M., G. Kaul, and M. L. Lipson (1994): Transactions, Volume, and Volatility Review of Financial Studies 7 (4) 631-651
- Author:
- Lakshmi Krishnamurthy
-
Method Summary
Modifier and Type Method Description static OrnsteinUhlenbeckSequence
Correlated(OrnsteinUhlenbeckPair oup2D, double dblGenerationInterval, double dblInitialLiquidityMarketState, double dblInitialVolatilityMarketState, int iCount)
Construct a Standard Correlated Instance of OrnsteinUhlenbeckSequenceint
count()
Retrieve the Total Count of States realizeddouble
generationInterval()
Retrieve the Generation IntervalMarketState
initialMarketState()
Retrieve the Initial Market StateMarketState[]
realizedMarketState()
Retrieve the Sequence of Market State RealizationOrnsteinUhlenbeck
scheme()
Retrieve the Ornstein-Uhlenbeck Generator Scheme Parametersstatic OrnsteinUhlenbeckSequence
Systemic(DiffusionEvaluatorOrnsteinUhlenbeck deou, double dblGenerationInterval, double dblInitialMarketState, int iCount)
Construct a Standard Systemic Instance of OrnsteinUhlenbeckSequenceMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Method Details
-
Systemic
public static final OrnsteinUhlenbeckSequence Systemic(DiffusionEvaluatorOrnsteinUhlenbeck deou, double dblGenerationInterval, double dblInitialMarketState, int iCount)Construct a Standard Systemic Instance of OrnsteinUhlenbeckSequence- Parameters:
deou
- The 1D Ornstein-Uhlenbeck Generator SchemedblGenerationInterval
- The Generation IntervaldblInitialMarketState
- The Initial Market StateiCount
- Count of the Number of States to be generated- Returns:
- The OrnsteinUhlenbeckSequence Instance
-
count
public int count()Retrieve the Total Count of States realized- Returns:
- The Total Count of States realized
-
generationInterval
public double generationInterval()Retrieve the Generation Interval- Returns:
- The Generation Interval
-
realizedMarketState
Retrieve the Sequence of Market State Realization- Returns:
- The Sequence of Market State Realization
-
scheme
Retrieve the Ornstein-Uhlenbeck Generator Scheme Parameters- Returns:
- The Ornstein-Uhlenbeck Generator Scheme Parameters
-
initialMarketState
Retrieve the Initial Market State- Returns:
- The Initial Market State
-