Class BrownianMotionOracle

java.lang.Object
net.finmath.smartcontract.valuation.oracle.simulated.BrownianMotionOracle
All Implemented Interfaces:
StochasticValuationOracle

public class BrownianMotionOracle extends Object implements StochasticValuationOracle
A dummy oracle which generates values using a geometric Brownian motion.
Author:
Christian Fries
  • Constructor Details

    • BrownianMotionOracle

      public BrownianMotionOracle()
      A dummy oracle which generates values using a geometric Brownian motion.

      Using default parameters.

      Caution: The object is initialized with LocalDateTime.now(). This will result in different Oracles each time the object is instantiated.

    • BrownianMotionOracle

      public BrownianMotionOracle(LocalDateTime initialTime)
      A dummy oracle which generates values using a geometric Brownian motion.

      Using a given initial time and default parameters.

      Parameters:
      initialTime - The date corresponding to the initial time of the oracle. Valuation prior this time is not provided.
    • BrownianMotionOracle

      public BrownianMotionOracle(LocalDateTime initialTime, double initialValue, double timeHorizon, double riskFreeRate, double volatility, int numberOfPaths)
      A dummy oracle which generates values using a geometric Brownian motion.

      Using a given initial time and default parameters.

      Parameters:
      initialTime - The date corresponding to the initial time of the oracle. Valuation prior this time is not provided.
      initialValue - The initial value.
      timeHorizon - The time horizon in ACT/365 from initialTime.
      riskFreeRate - The drift.
      volatility - The volatility.
      numberOfPaths - The number of simulation path to generate.
    • BrownianMotionOracle

      public BrownianMotionOracle(net.finmath.time.TimeDiscretization timeDiscretization, LocalDateTime initialTime, double initialValue, double riskFreeRate, double volatility, int numberOfPaths)
  • Method Details

    • getValue

      public net.finmath.stochastic.RandomVariable getValue(LocalDateTime evaluationTime, LocalDateTime marketDataTime)
      Description copied from interface: StochasticValuationOracle
      Provides that value of the Oracle at a given evaluation time.
      Specified by:
      getValue in interface StochasticValuationOracle
      Parameters:
      evaluationTime - The evaluation time.
      marketDataTime - The market data time.
      Returns:
      The value.