idx
int64
0
41.2k
question
stringlengths
83
4.15k
target
stringlengths
5
715
23,100
public static double huntKennedyCMSFloorValue ( double forwardSwaprate , double volatility , double swapAnnuity , double optionMaturity , double swapMaturity , double payoffUnit , double optionStrike ) { double huntKennedyCMSOptionValue = huntKennedyCMSOptionValue ( forwardSwaprate , volatility , swapAnnuity , optionMa...
Calculate the value of a CMS strike using the Black - Scholes model for the swap rate together with the Hunt - Kennedy convexity adjustment .
23,101
public static double huntKennedyCMSAdjustedRate ( double forwardSwaprate , double volatility , double swapAnnuity , double optionMaturity , double swapMaturity , double payoffUnit ) { double a = 1.0 / swapMaturity ; double b = ( payoffUnit / swapAnnuity - a ) / forwardSwaprate ; double convexityAdjustment = Math . exp ...
Calculate the adjusted forward swaprate corresponding to a change of payoff unit from the given swapAnnuity to the given payoffUnit using the Black - Scholes model for the swap rate together with the Hunt - Kennedy convexity adjustment .
23,102
public static double volatilityConversionLognormalATMtoNormalATM ( double forward , double displacement , double maturity , double lognormalVolatiltiy ) { double x = lognormalVolatiltiy * Math . sqrt ( maturity / 8 ) ; double y = org . apache . commons . math3 . special . Erf . erf ( x ) ; double normalVol = Math . sqr...
Exact conversion of displaced lognormal ATM volatiltiy to normal ATM volatility .
23,103
private static InterestRateSwapLegProductDescriptor getSwapLegProductDescriptor ( Element leg , String forwardCurveName , String discountCurveName , DayCountConvention daycountConvention ) { boolean isFixed = leg . getElementsByTagName ( "interestType" ) . item ( 0 ) . getTextContent ( ) . equalsIgnoreCase ( "FIX" ) ; ...
Construct an InterestRateSwapLegProductDescriptor from a node in a FIPXML file .
23,104
private static AbstractIndex constructLiborIndex ( String forwardCurveName , Schedule schedule ) { if ( forwardCurveName != null ) { double fixingOffset = 0 ; double periodLength = 0 ; for ( int i = 0 ; i < schedule . getNumberOfPeriods ( ) ; i ++ ) { fixingOffset *= ( ( double ) i ) / ( i + 1 ) ; fixingOffset += ( sch...
Construct a Libor index for a given curve and schedule .
23,105
public RandomVariable getImpliedBachelierATMOptionVolatility ( RandomVariable optionValue , double optionMaturity , double swapAnnuity ) { return optionValue . average ( ) . mult ( Math . sqrt ( 2.0 * Math . PI / optionMaturity ) / swapAnnuity ) ; }
Calculates ATM Bachelier implied volatilities .
23,106
public RandomVariable [ ] getBasisFunctions ( double fixingDate , LIBORModelMonteCarloSimulationModel model ) throws CalculationException { ArrayList < RandomVariable > basisFunctions = new ArrayList < > ( ) ; RandomVariable basisFunction = new RandomVariableFromDoubleArray ( 1.0 ) ; basisFunctions . add ( basisFunctio...
Return the basis functions for the regression suitable for this product .
23,107
private RandomVariableInterface getDrift ( int timeIndex , int componentIndex , RandomVariableInterface [ ] realizationAtTimeIndex , RandomVariableInterface [ ] realizationPredictor ) { if ( getTime ( timeIndex ) >= this . getLiborPeriod ( componentIndex ) ) { return null ; } if ( driftApproximationMethod == Driftappro...
Alternative implementation for the drift . For experimental purposes .
23,108
public static double getHaltonNumberForGivenBase ( long index , int base ) { index += 1 ; double x = 0.0 ; double factor = 1.0 / base ; while ( index > 0 ) { x += ( index % base ) * factor ; factor /= base ; index /= base ; } return x ; }
Return a Halton number sequence starting at index = 0 base &gt ; 1 .
23,109
public Map < Integer , RandomVariable > getGradient ( ) { int numberOfCalculationSteps = getFunctionList ( ) . size ( ) ; RandomVariable [ ] omegaHat = new RandomVariable [ numberOfCalculationSteps ] ; omegaHat [ numberOfCalculationSteps - 1 ] = new RandomVariableFromDoubleArray ( 1.0 ) ; for ( int variableIndex = numb...
Implements the AAD Algorithm
23,110
public double [ ] getZeroRates ( double [ ] maturities ) { double [ ] values = new double [ maturities . length ] ; for ( int i = 0 ; i < maturities . length ; i ++ ) { values [ i ] = getZeroRate ( maturities [ i ] ) ; } return values ; }
Returns the zero rates for a given vector maturities .
23,111
public static double [ ] [ ] invert ( double [ ] [ ] matrix ) { if ( isSolverUseApacheCommonsMath ) { LUDecomposition lu = new LUDecomposition ( new Array2DRowRealMatrix ( matrix ) ) ; double [ ] [ ] matrixInverse = lu . getSolver ( ) . getInverse ( ) . getData ( ) ; return matrixInverse ; } else { return org . jblas ....
Returns the inverse of a given matrix .
23,112
public static double [ ] [ ] factorReductionUsingCommonsMath ( double [ ] [ ] correlationMatrix , int numberOfFactors ) { double [ ] [ ] factorMatrix = getFactorMatrix ( correlationMatrix , numberOfFactors ) ; for ( int row = 0 ; row < correlationMatrix . length ; row ++ ) { double sumSquared = 0 ; for ( int factor = 0...
Returns a correlation matrix which has rank &lt ; n and for which the first n factors agree with the factors of correlationMatrix .
23,113
public static double [ ] [ ] pseudoInverse ( double [ ] [ ] matrix ) { if ( isSolverUseApacheCommonsMath ) { SingularValueDecomposition svd = new SingularValueDecomposition ( new Array2DRowRealMatrix ( matrix ) ) ; double [ ] [ ] matrixInverse = svd . getSolver ( ) . getInverse ( ) . getData ( ) ; return matrixInverse ...
Pseudo - Inverse of a matrix calculated in the least square sense .
23,114
public static double [ ] [ ] diag ( double [ ] vector ) { double [ ] [ ] diagonalMatrix = new double [ vector . length ] [ vector . length ] ; for ( int index = 0 ; index < vector . length ; index ++ ) { diagonalMatrix [ index ] [ index ] = vector [ index ] ; } return diagonalMatrix ; }
Generates a diagonal matrix with the input vector on its diagonal
23,115
private double [ ] formatTargetValuesForOptimizer ( ) { int numberOfMaturities = surface . getMaturities ( ) . length ; double mats [ ] = surface . getMaturities ( ) ; ArrayList < Double > vals = new ArrayList < Double > ( ) ; for ( int t = 0 ; t < numberOfMaturities ; t ++ ) { double mat = mats [ t ] ; double [ ] mySt...
This is a service method that takes care of putting al the target values in a single array .
23,116
public static ForwardCurveInterpolation createForwardCurveFromDiscountFactors ( String name , double [ ] times , RandomVariable [ ] givenDiscountFactors , double paymentOffset ) { ForwardCurveInterpolation forwardCurveInterpolation = new ForwardCurveInterpolation ( name , paymentOffset , InterpolationEntityForward . FO...
Create a forward curve from given times and discount factors .
23,117
public static ForwardCurveInterpolation createForwardCurveFromMonteCarloLiborModel ( String name , LIBORModelMonteCarloSimulationModel model , double startTime ) throws CalculationException { int timeIndex = model . getTimeIndex ( startTime ) ; ArrayList < RandomVariable > liborsAtTimeIndex = new ArrayList < > ( ) ; in...
Create a forward curve from forwards given by a LIBORMonteCarloModel .
23,118
private void addForward ( AnalyticModel model , double fixingTime , RandomVariable forward , boolean isParameter ) { double interpolationEntitiyTime ; RandomVariable interpolationEntityForwardValue ; switch ( interpolationEntityForward ) { case FORWARD : default : interpolationEntitiyTime = fixingTime ; interpolationEn...
Add a forward to this curve .
23,119
public LinearInterpolatedTimeDiscreteProcess add ( LinearInterpolatedTimeDiscreteProcess process ) throws CalculationException { Map < Double , RandomVariable > sum = new HashMap < > ( ) ; for ( double time : timeDiscretization ) { sum . put ( time , realizations . get ( time ) . add ( process . getProcessValue ( time ...
Create a new linear interpolated time discrete process by using the time discretization of this process and the sum of this process and the given one as its values .
23,120
public StochasticPathwiseLevenbergMarquardt getCloneWithModifiedTargetValues ( List < RandomVariable > newTargetVaues , List < RandomVariable > newWeights , boolean isUseBestParametersAsInitialParameters ) throws CloneNotSupportedException { StochasticPathwiseLevenbergMarquardt clonedOptimizer = clone ( ) ; clonedOptim...
Create a clone of this LevenbergMarquardt optimizer with a new vector for the target values and weights .
23,121
public RandomVariableInterface [ ] getBasisFunctions ( double exerciseDate , LIBORModelMonteCarloSimulationInterface model ) throws CalculationException { ArrayList < RandomVariableInterface > basisFunctions = new ArrayList < RandomVariableInterface > ( ) ; RandomVariableInterface basisFunction ; basisFunction = model ...
Return the regression basis functions .
23,122
private DiscountCurve createDiscountCurve ( String discountCurveName ) { DiscountCurve discountCurve = model . getDiscountCurve ( discountCurveName ) ; if ( discountCurve == null ) { discountCurve = DiscountCurveInterpolation . createDiscountCurveFromDiscountFactors ( discountCurveName , new double [ ] { 0.0 } , new do...
Get a discount curve from the model if not existing create a discount curve .
23,123
public double d ( double x ) { int intervalNumber = getIntervalNumber ( x ) ; if ( intervalNumber == 0 || intervalNumber == points . length ) { return x ; } return getIntervalReferencePoint ( intervalNumber - 1 ) ; }
If a given x is into an interval of the partition this method returns the reference point of the corresponding interval . If the given x is not contained in any interval of the partition this method returns x .
23,124
public double getValue ( ForwardCurveInterface forwardCurve , double swaprateVolatility ) { double swaprate = swaprates [ 0 ] ; for ( double swaprate1 : swaprates ) { if ( swaprate1 != swaprate ) { throw new RuntimeException ( "Uneven swaprates not allows for analytical pricing." ) ; } } double [ ] swapTenor = new doub...
This method returns the value of the product using a Black - Scholes model for the swap rate The model is determined by a discount factor curve and a swap rate volatility .
23,125
public double getRate ( AnalyticModel model ) { if ( model == null ) { throw new IllegalArgumentException ( "model==null" ) ; } ForwardCurve forwardCurve = model . getForwardCurve ( forwardCurveName ) ; if ( forwardCurve == null ) { throw new IllegalArgumentException ( "No forward curve of name '" + forwardCurveName + ...
Return the par FRA rate for a given curve .
23,126
public RandomVariable [ ] getParameter ( ) { double [ ] parameterAsDouble = this . getParameterAsDouble ( ) ; RandomVariable [ ] parameter = new RandomVariable [ parameterAsDouble . length ] ; for ( int i = 0 ; i < parameter . length ; i ++ ) { parameter [ i ] = new Scalar ( parameterAsDouble [ i ] ) ; } return paramet...
Get the parameters of determining this parametric covariance model . The parameters are usually free parameters which may be used in calibration .
23,127
public static DiscountCurveInterface createDiscountCurveFromMonteCarloLiborModel ( String forwardCurveName , LIBORModelMonteCarloSimulationModel model , double startTime ) throws CalculationException { if ( model . getModel ( ) . getDiscountCurve ( ) == null || model . getModel ( ) . getDiscountCurve ( ) . getName ( ) ...
Create a discount curve from forwards given by a LIBORMonteCarloModel . If the model uses multiple curves return its discount curve .
23,128
public static boolean isEasterSunday ( LocalDate date ) { int y = date . getYear ( ) ; int a = y % 19 ; int b = y / 100 ; int c = y % 100 ; int d = b / 4 ; int e = b % 4 ; int f = ( b + 8 ) / 25 ; int g = ( b - f + 1 ) / 3 ; int h = ( 19 * a + b - d - g + 15 ) % 30 ; int i = c / 4 ; int k = c % 4 ; int l = ( 32 + 2 * e...
Test a given date for being easter sunday .
23,129
public static LocalDateTime getDateFromFloatingPointDate ( LocalDateTime referenceDate , double floatingPointDate ) { if ( referenceDate == null ) { return null ; } Duration duration = Duration . ofSeconds ( Math . round ( floatingPointDate * SECONDS_PER_DAY ) ) ; return referenceDate . plus ( duration ) ; }
Convert a floating point date to a LocalDateTime .
23,130
public static double getFloatingPointDateFromDate ( LocalDateTime referenceDate , LocalDateTime date ) { Duration duration = Duration . between ( referenceDate , date ) ; return ( ( double ) duration . getSeconds ( ) ) / SECONDS_PER_DAY ; }
Convert a given date to a floating point date using a given reference date .
23,131
public static LocalDate getDateFromFloatingPointDate ( LocalDate referenceDate , double floatingPointDate ) { if ( referenceDate == null ) { return null ; } return referenceDate . plusDays ( ( int ) Math . round ( floatingPointDate * 365.0 ) ) ; }
Convert a floating point date to a LocalDate .
23,132
public double inverseCumulativeDistribution ( double x ) { double p = Math . exp ( - lambda ) ; double dp = p ; int k = 0 ; while ( x > p ) { k ++ ; dp *= lambda / k ; p += dp ; } return k ; }
Return the inverse cumulative distribution function at x .
23,133
protected void addPoint ( double time , RandomVariable value , boolean isParameter ) { synchronized ( rationalFunctionInterpolationLazyInitLock ) { if ( interpolationEntity == InterpolationEntity . LOG_OF_VALUE_PER_TIME && time == 0 ) { boolean containsOne = false ; int index = 0 ; for ( int i = 0 ; i < value . size ( ...
Add a point to this curveFromInterpolationPoints . The method will throw an exception if the point is already part of the curveFromInterpolationPoints .
23,134
public static String getOffsetCodeFromSchedule ( Schedule schedule ) { double doubleLength = 0 ; for ( int i = 0 ; i < schedule . getNumberOfPeriods ( ) ; i ++ ) { doubleLength += schedule . getPeriodLength ( i ) ; } doubleLength /= schedule . getNumberOfPeriods ( ) ; doubleLength *= 12 ; int periodLength = ( int ) Mat...
Determines the offset code of a forward contract from a schedule . Rounds the average period length to full months .
23,135
public static String getOffsetCodeFromCurveName ( String curveName ) { if ( curveName == null || curveName . length ( ) == 0 ) { return null ; } String [ ] splits = curveName . split ( "(?<=\\D)(?=\\d)" ) ; String offsetCode = splits [ splits . length - 1 ] ; if ( ! Character . isDigit ( offsetCode . charAt ( 0 ) ) ) {...
Determines the offset code of a forward contract from the name of a forward curve . This method will extract a group of one or more digits together with the first letter behind them if any . If there are multiple groups of digits in the name this method will extract the last . If there is no number in the string this m...
23,136
public ScheduleDescriptor generateScheduleDescriptor ( LocalDate startDate , LocalDate endDate ) { return new ScheduleDescriptor ( startDate , endDate , getFrequency ( ) , getDaycountConvention ( ) , getShortPeriodConvention ( ) , getDateRollConvention ( ) , getBusinessdayCalendar ( ) , getFixingOffsetDays ( ) , getPay...
Generate a schedule descriptor for the given start and end date .
23,137
public Schedule generateSchedule ( LocalDate referenceDate , LocalDate startDate , LocalDate endDate ) { return ScheduleGenerator . createScheduleFromConventions ( referenceDate , startDate , endDate , getFrequency ( ) , getDaycountConvention ( ) , getShortPeriodConvention ( ) , getDateRollConvention ( ) , getBusinessd...
Generate a schedule for the given start and end date .
23,138
public static ScheduleInterface createScheduleFromConventions ( LocalDate referenceDate , LocalDate startDate , String frequency , double maturity , String daycountConvention , String shortPeriodConvention ) { return createScheduleFromConventions ( referenceDate , startDate , frequency , maturity , daycountConvention ,...
Generates a schedule based on some meta data . The schedule generation considers short periods . Date rolling is ignored .
23,139
public AnalyticProductInterface getCalibrationProductForSymbol ( String symbol ) { for ( int i = 0 ; i < calibrationProductsSymbols . size ( ) ; i ++ ) { String calibrationProductSymbol = calibrationProductsSymbols . get ( i ) ; if ( calibrationProductSymbol . equals ( symbol ) ) { return calibrationProducts . get ( i ...
Returns the first product found in the vector of calibration products which matches the given symbol where symbol is the String set in the calibrationSpecs .
23,140
public RandomVariable getValue ( double evaluationTime , AssetModelMonteCarloSimulationModel model ) throws CalculationException { if ( exerciseMethod == ExerciseMethod . UPPER_BOUND_METHOD ) { GoldenSectionSearch optimizer = new GoldenSectionSearch ( - 1.0 , 1.0 ) ; while ( ! optimizer . isDone ( ) ) { double lambda =...
This method returns the value random variable of the product within the specified model evaluated at a given evalutationTime . Cash - flows prior evaluationTime are not considered .
23,141
public static HazardCurve createHazardCurveFromSurvivalProbabilities ( String name , double [ ] times , double [ ] givenSurvivalProbabilities ) { HazardCurve survivalProbabilities = new HazardCurve ( name ) ; for ( int timeIndex = 0 ; timeIndex < times . length ; timeIndex ++ ) { survivalProbabilities . addSurvivalProb...
Create a hazard curve from given times and given discount factors using default interpolation and extrapolation methods .
23,142
public SwaptionDataLattice convertLattice ( QuotingConvention targetConvention , double displacement , AnalyticModel model ) { if ( displacement != 0 && targetConvention != QuotingConvention . PAYERVOLATILITYLOGNORMAL ) { throw new IllegalArgumentException ( "SwaptionDataLattice only supports displacement, when using Q...
Convert this lattice to store data in the given convention . Conversion involving receiver premium assumes zero wide collar .
23,143
public SwaptionDataLattice append ( SwaptionDataLattice other , AnalyticModel model ) { SwaptionDataLattice combined = new SwaptionDataLattice ( referenceDate , quotingConvention , displacement , forwardCurveName , discountCurveName , floatMetaSchedule , fixMetaSchedule ) ; combined . entryMap . putAll ( entryMap ) ; i...
Append the data of another lattice to this lattice . If the other lattice follows a different quoting convention it is automatically converted . However this method does not check whether the two lattices are aligned in terms of reference date curve names and meta schedules . If the two lattices have shared data points...
23,144
public double [ ] getMoneynessAsOffsets ( ) { DoubleStream moneyness = getGridNodesPerMoneyness ( ) . keySet ( ) . stream ( ) . mapToDouble ( Integer :: doubleValue ) ; if ( quotingConvention == QuotingConvention . PAYERVOLATILITYLOGNORMAL ) { moneyness = moneyness . map ( new DoubleUnaryOperator ( ) { public double ap...
Return all levels of moneyness for which data exists . Moneyness is returned as actual difference strike - par swap rate .
23,145
public double [ ] getMaturities ( double moneyness ) { int [ ] maturitiesInMonths = getMaturities ( convertMoneyness ( moneyness ) ) ; double [ ] maturities = new double [ maturitiesInMonths . length ] ; for ( int index = 0 ; index < maturities . length ; index ++ ) { maturities [ index ] = convertMaturity ( maturities...
Return all valid maturities for a given moneyness . Uses the fixing times of the fix schedule to determine fractions .
23,146
public int [ ] getTenors ( ) { Set < Integer > setTenors = new HashSet < > ( ) ; for ( int moneyness : getGridNodesPerMoneyness ( ) . keySet ( ) ) { setTenors . addAll ( Arrays . asList ( ( IntStream . of ( keyMap . get ( moneyness ) [ 1 ] ) . boxed ( ) . toArray ( Integer [ ] :: new ) ) ) ) ; } return setTenors . stre...
Return all tenors for which data exists .
23,147
public int [ ] getTenors ( int moneynessBP , int maturityInMonths ) { try { List < Integer > ret = new ArrayList < > ( ) ; for ( int tenor : getGridNodesPerMoneyness ( ) . get ( moneynessBP ) [ 1 ] ) { if ( containsEntryFor ( maturityInMonths , tenor , moneynessBP ) ) { ret . add ( tenor ) ; } } return ret . stream ( )...
Return all valid tenors for a given moneyness and maturity .
23,148
public double [ ] getTenors ( double moneyness , double maturity ) { int maturityInMonths = ( int ) Math . round ( maturity * 12 ) ; int [ ] tenorsInMonths = getTenors ( convertMoneyness ( moneyness ) , maturityInMonths ) ; double [ ] tenors = new double [ tenorsInMonths . length ] ; for ( int index = 0 ; index < tenor...
Return all valid tenors for a given moneyness and maturity . Uses the payment times of the fix schedule to determine fractions .
23,149
private int convertMoneyness ( double moneyness ) { if ( quotingConvention == QuotingConvention . PAYERVOLATILITYLOGNORMAL ) { return ( int ) Math . round ( moneyness * 100 ) ; } else if ( quotingConvention == QuotingConvention . RECEIVERPRICE ) { return - ( int ) Math . round ( moneyness * 10000 ) ; } else { return ( ...
Convert moneyness given as difference to par swap rate to moneyness in bp . Uses the fixing times of the fix schedule to determine fractions .
23,150
private double convertMaturity ( int maturityInMonths ) { Schedule schedule = fixMetaSchedule . generateSchedule ( referenceDate , maturityInMonths , 12 ) ; return schedule . getFixing ( 0 ) ; }
Convert maturity given as offset in months to year fraction .
23,151
private double convertTenor ( int maturityInMonths , int tenorInMonths ) { Schedule schedule = fixMetaSchedule . generateSchedule ( referenceDate , maturityInMonths , tenorInMonths ) ; return schedule . getPayment ( schedule . getNumberOfPeriods ( ) - 1 ) ; }
Convert tenor given as offset in months to year fraction .
23,152
public boolean containsEntryFor ( int maturityInMonths , int tenorInMonths , int moneynessBP ) { return entryMap . containsKey ( new DataKey ( maturityInMonths , tenorInMonths , moneynessBP ) ) ; }
Returns true if the lattice contains an entry at the specified location .
23,153
private double convertToConvention ( double value , DataKey key , QuotingConvention toConvention , double toDisplacement , QuotingConvention fromConvention , double fromDisplacement , AnalyticModel model ) { if ( toConvention == fromConvention ) { if ( toConvention != QuotingConvention . PAYERVOLATILITYLOGNORMAL ) { re...
Convert the value to requested quoting convention . Conversion involving receiver premium assumes zero wide collar .
23,154
public double getCouponPayment ( int periodIndex , AnalyticModel model ) { ForwardCurve forwardCurve = model . getForwardCurve ( forwardCurveName ) ; if ( forwardCurve == null && forwardCurveName != null && forwardCurveName . length ( ) > 0 ) { throw new IllegalArgumentException ( "No forward curve with name '" + forwa...
Returns the coupon payment of the period with the given index . The analytic model is needed in case of floating bonds .
23,155
public double getValueWithGivenSpreadOverCurve ( double evaluationTime , Curve referenceCurve , double spread , AnalyticModel model ) { double value = 0 ; for ( int periodIndex = 0 ; periodIndex < schedule . getNumberOfPeriods ( ) ; periodIndex ++ ) { double paymentDate = schedule . getPayment ( periodIndex ) ; value +...
Returns the value of the sum of discounted cash flows of the bond where the discounting is done with the given reference curve and an additional spread . This method can be used for optimizer .
23,156
public double getValueWithGivenYield ( double evaluationTime , double rate , AnalyticModel model ) { DiscountCurve referenceCurve = DiscountCurveInterpolation . createDiscountCurveFromDiscountFactors ( "referenceCurve" , new double [ ] { 0.0 , 1.0 } , new double [ ] { 1.0 , 1.0 } ) ; return getValueWithGivenSpreadOverC...
Returns the value of the sum of discounted cash flows of the bond where the discounting is done with the given yield curve . This method can be used for optimizer .
23,157
public double getSpread ( double bondPrice , Curve referenceCurve , AnalyticModel model ) { GoldenSectionSearch search = new GoldenSectionSearch ( - 2.0 , 2.0 ) ; while ( search . getAccuracy ( ) > 1E-11 && ! search . isDone ( ) ) { double x = search . getNextPoint ( ) ; double fx = getValueWithGivenSpreadOverCurve ( 0...
Returns the spread value such that the sum of cash flows of the bond discounted with a given reference curve with the additional spread coincides with a given price .
23,158
public double getYield ( double bondPrice , AnalyticModel model ) { GoldenSectionSearch search = new GoldenSectionSearch ( - 2.0 , 2.0 ) ; while ( search . getAccuracy ( ) > 1E-11 && ! search . isDone ( ) ) { double x = search . getNextPoint ( ) ; double fx = getValueWithGivenYield ( 0.0 , x , model ) ; double y = ( bo...
Returns the yield value such that the sum of cash flows of the bond discounted with the yield curve coincides with a given price .
23,159
public double getAccruedInterest ( LocalDate date , AnalyticModel model ) { int periodIndex = schedule . getPeriodIndex ( date ) ; Period period = schedule . getPeriod ( periodIndex ) ; DayCountConvention dcc = schedule . getDaycountconvention ( ) ; double accruedInterest = getCouponPayment ( periodIndex , model ) * ( ...
Returns the accrued interest of the bond for a given date .
23,160
public double getAccruedInterest ( double time , AnalyticModel model ) { LocalDate date = FloatingpointDate . getDateFromFloatingPointDate ( schedule . getReferenceDate ( ) , time ) ; return getAccruedInterest ( date , model ) ; }
Returns the accrued interest of the bond for a given time .
23,161
public static double blackScholesOptionTheta ( double initialStockValue , double riskFreeRate , double volatility , double optionMaturity , double optionStrike ) { if ( optionStrike <= 0.0 || optionMaturity <= 0.0 ) { return 0.0 ; } else { double dPlus = ( Math . log ( initialStockValue / optionStrike ) + ( riskFreeRat...
This static method calculated the vega of a call option under a Black - Scholes model
23,162
public Map < String , Object > getValues ( double evaluationTime , MonteCarloSimulationInterface model ) throws CalculationException { RandomVariableInterface values = getValue ( evaluationTime , model ) ; if ( values == null ) { return null ; } double value = values . getAverage ( ) ; double error = values . getStanda...
This method returns the value of the product under the specified model and other information in a key - value map .
23,163
public double getValue ( double x ) { synchronized ( interpolatingRationalFunctionsLazyInitLock ) { if ( interpolatingRationalFunctions == null ) { doCreateRationalFunctions ( ) ; } } int pointIndex = java . util . Arrays . binarySearch ( points , x ) ; if ( pointIndex >= 0 ) { return values [ pointIndex ] ; } int inte...
Get an interpolated value for a given argument x .
23,164
public RandomVariable [ ] getGradient ( ) { int numberOfVariables = getNumberOfVariablesInList ( ) ; int numberOfCalculationSteps = factory . getNumberOfEntriesInList ( ) ; RandomVariable [ ] omega_hat = new RandomVariable [ numberOfCalculationSteps ] ; omega_hat [ numberOfCalculationSteps - 1 ] = new RandomVariableFro...
Apply the AAD algorithm to this very variable
23,165
public AbstractVolatilitySurfaceParametric getCloneCalibrated ( final AnalyticModel calibrationModel , final Vector < AnalyticProduct > calibrationProducts , final List < Double > calibrationTargetValues , Map < String , Object > calibrationParameters , final ParameterTransformation parameterTransformation , OptimizerF...
Create a clone of this volatility surface using a generic calibration of its parameters to given market data .
23,166
public static double [ ] computeSeasonalAdjustments ( double [ ] realizedCPIValues , int lastMonth , int numberOfYearsToAverage ) { double [ ] averageLogReturn = new double [ 12 ] ; Arrays . fill ( averageLogReturn , 0.0 ) ; for ( int arrayIndex = 0 ; arrayIndex < 12 * numberOfYearsToAverage ; arrayIndex ++ ) { int mon...
Computes annualized seasonal adjustments from given monthly realized CPI values .
23,167
public ProductFactoryCascade < T > addFactoryBefore ( ProductFactory < ? extends T > factory ) { ArrayList < ProductFactory < ? extends T > > factories = new ArrayList < ProductFactory < ? extends T > > ( this . factories . size ( ) + 1 ) ; factories . addAll ( this . factories ) ; factories . add ( 0 , factory ) ; ret...
Add a given factory to the list of factories at the BEGINNING .
23,168
public RandomVariable getValues ( double evaluationTime , LIBORMarketModel model ) { if ( evaluationTime > 0 ) { throw new RuntimeException ( "Forward start evaluation currently not supported." ) ; } LIBORCovarianceModel covarianceModel = model . getCovarianceModel ( ) ; int numberOfComponents = covarianceModel . getLi...
Calculates the squared curvature of the LIBOR instantaneous variance .
23,169
public RandomVariableInterface [ ] getFactorLoading ( double time , double component , RandomVariableInterface [ ] realizationAtTimeIndex ) { int componentIndex = liborPeriodDiscretization . getTimeIndex ( component ) ; if ( componentIndex < 0 ) { componentIndex = - componentIndex - 2 ; } return getFactorLoading ( time...
Return the factor loading for a given time and a given component .
23,170
private RandomVariable getValueUnderlyingNumeraireRelative ( LIBORModelMonteCarloSimulationModel model , Schedule legSchedule , boolean paysFloat , double swaprate , double notional ) throws CalculationException { RandomVariable value = model . getRandomVariableForConstant ( 0.0 ) ; for ( int periodIndex = legSchedule ...
Calculated the numeraire relative value of an underlying swap leg .
23,171
public ConditionalExpectationEstimator getConditionalExpectationEstimator ( double exerciseTime , LIBORModelMonteCarloSimulationModel model ) throws CalculationException { RandomVariable [ ] regressionBasisFunctions = regressionBasisFunctionProvider . getBasisFunctions ( exerciseTime , model ) ; return conditionalExpec...
The conditional expectation is calculated using a Monte - Carlo regression technique .
23,172
public RandomVariable getNumeraire ( double time ) throws CalculationException { int timeIndex = getLiborPeriodIndex ( time ) ; if ( timeIndex < 0 ) { int lowerIndex = - timeIndex - 1 ; int upperIndex = - timeIndex ; double alpha = ( time - getLiborPeriod ( lowerIndex ) ) / ( getLiborPeriod ( upperIndex ) - getLiborPer...
Return the numeraire at a given time . The numeraire is provided for interpolated points . If requested on points which are not part of the tenor discretization the numeraire uses a linear interpolation of the reciprocal value . See ISBN 0470047224 for details .
23,173
private double u_neg_inf ( double x , double tau ) { return f ( boundaryCondition . getValueAtLowerBoundary ( model , f_t ( tau ) , f_s ( x ) ) , x , tau ) ; }
Heat Equation Boundary Conditions
23,174
public double [ ] getRegressionCoefficients ( RandomVariable value ) { if ( basisFunctions . length == 0 ) { return new double [ ] { } ; } else if ( basisFunctions . length == 1 ) { return new double [ ] { value . mult ( basisFunctions [ 0 ] ) . getAverage ( ) / basisFunctions [ 0 ] . squared ( ) . getAverage ( ) } ; }...
Get the vector of regression coefficients .
23,175
private ProductDescriptor getSwapProductDescriptor ( Element trade ) { InterestRateSwapLegProductDescriptor legReceiver = null ; InterestRateSwapLegProductDescriptor legPayer = null ; NodeList legs = trade . getElementsByTagName ( "swapStream" ) ; for ( int legIndex = 0 ; legIndex < legs . getLength ( ) ; legIndex ++ )...
Construct an InterestRateSwapProductDescriptor from a node in a FpML file .
23,176
public static String getVersionString ( ) { String versionString = "UNKNOWN" ; Properties propeties = getProperites ( ) ; if ( propeties != null ) { versionString = propeties . getProperty ( "finmath-lib.version" ) ; } return versionString ; }
Return the version string of this instance of finmath - lib .
23,177
public static String getBuildString ( ) { String versionString = "UNKNOWN" ; Properties propeties = getProperites ( ) ; if ( propeties != null ) { versionString = propeties . getProperty ( "finmath-lib.build" ) ; } return versionString ; }
Return the build string of this instance of finmath - lib . Currently this is the Git commit hash .
23,178
public static DiscountCurve createDiscountCurveFromDiscountFactors ( String name , double [ ] times , double [ ] givenDiscountFactors ) { DiscountCurve discountFactors = new DiscountCurve ( name ) ; for ( int timeIndex = 0 ; timeIndex < times . length ; timeIndex ++ ) { discountFactors . addDiscountFactor ( times [ tim...
Create a discount curve from given times and given discount factors using default interpolation and extrapolation methods .
23,179
public Map < Double , SingleAssetEuropeanOptionProductDescriptor > getDescriptors ( LocalDate referenceDate ) { int numberOfStrikes = strikes . length ; HashMap < Double , SingleAssetEuropeanOptionProductDescriptor > descriptors = new HashMap < Double , SingleAssetEuropeanOptionProductDescriptor > ( ) ; LocalDate matur...
Return a collection of product descriptors for each option in the smile .
23,180
public SingleAssetEuropeanOptionProductDescriptor getDescriptor ( LocalDate referenceDate , int index ) throws ArrayIndexOutOfBoundsException { LocalDate maturityDate = FloatingpointDate . getDateFromFloatingPointDate ( referenceDate , maturity ) ; if ( index >= strikes . length ) { throw new ArrayIndexOutOfBoundsExcep...
Return a product descriptor for a specific strike .
23,181
public RandomVariable [ ] getValues ( double [ ] times ) { RandomVariable [ ] values = new RandomVariable [ times . length ] ; for ( int i = 0 ; i < times . length ; i ++ ) { values [ i ] = getValue ( null , times [ i ] ) ; } return values ; }
Return a vector of values corresponding to a given vector of times .
23,182
public static double getDaycount ( LocalDate startDate , LocalDate endDate , String convention ) { DayCountConventionInterface daycountConvention = getDayCountConvention ( convention ) ; return daycountConvention . getDaycount ( startDate , endDate ) ; }
Return the number of days between startDate and endDate given the specific daycount convention .
23,183
public double getValue ( ForwardCurve forwardCurve , double swaprateVolatility ) { double [ ] swapTenor = new double [ fixingDates . length + 1 ] ; System . arraycopy ( fixingDates , 0 , swapTenor , 0 , fixingDates . length ) ; swapTenor [ swapTenor . length - 1 ] = paymentDates [ paymentDates . length - 1 ] ; TimeDisc...
This method returns the value of the product using a Black - Scholes model for the swap rate with the Hunt - Kennedy convexity adjustment . The model is determined by a discount factor curve and a swap rate volatility .
23,184
public double getDiscountFactor ( AnalyticModelInterface model , double maturity ) { maturity *= timeScaling ; double beta1 = parameter [ 0 ] ; double beta2 = parameter [ 1 ] ; double beta3 = parameter [ 2 ] ; double beta4 = parameter [ 3 ] ; double tau1 = parameter [ 4 ] ; double tau2 = parameter [ 5 ] ; double x1 = t...
Return the discount factor within a given model context for a given maturity .
23,185
public static Schedule createScheduleFromConventions ( LocalDate referenceDate , LocalDate startDate , String frequency , double maturity , String daycountConvention , String shortPeriodConvention , String dateRollConvention , BusinessdayCalendar businessdayCalendar , int fixingOffsetDays , int paymentOffsetDays ) { Lo...
Generates a schedule based on some meta data . The schedule generation considers short periods .
23,186
public Curve getRegressionCurve ( ) { if ( regressionCurve != null ) { return regressionCurve ; } DoubleMatrix a = solveEquationSystem ( ) ; double [ ] curvePoints = new double [ partition . getLength ( ) ] ; curvePoints [ 0 ] = a . get ( 0 ) ; for ( int i = 1 ; i < curvePoints . length ; i ++ ) { curvePoints [ i ] = c...
Returns the curve resulting from the local linear regression with discrete kernel .
23,187
public double getValueAsPrice ( double evaluationTime , AnalyticModel model ) { ForwardCurve forwardCurve = model . getForwardCurve ( forwardCurveName ) ; DiscountCurve discountCurve = model . getDiscountCurve ( discountCurveName ) ; DiscountCurve discountCurveForForward = null ; if ( forwardCurve == null && forwardCur...
Returns the value of this product under the given model .
23,188
public void setDerivatives ( double [ ] parameters , double [ ] [ ] derivatives ) throws SolverException { Vector < Future < double [ ] > > valueFutures = new Vector < Future < double [ ] > > ( parameterCurrent . length ) ; for ( int parameterIndex = 0 ; parameterIndex < parameterCurrent . length ; parameterIndex ++ ) ...
The derivative of the objective function . You may override this method if you like to implement your own derivative .
23,189
private List < String > parseParams ( String param ) { Assert . hasText ( param , "param must not be empty nor null" ) ; List < String > paramsToUse = new ArrayList < > ( ) ; Matcher regexMatcher = DEPLOYMENT_PARAMS_PATTERN . matcher ( param ) ; int start = 0 ; while ( regexMatcher . find ( ) ) { String p = removeQuoti...
Parses a string of space delimited command line parameters and returns a list of parameters which doesn t contain any special quoting either for values or whole parameter .
23,190
public static String load ( LoadConfiguration config , String prefix ) { if ( config . getMode ( ) == Mode . INSERT ) { return loadInsert ( config , prefix ) ; } else if ( config . getMode ( ) == Mode . UPDATE ) { return loadUpdate ( config , prefix ) ; } throw new IllegalArgumentException ( "Unsupported mode " + confi...
Builds sql clause to load data into a database .
23,191
public static Map < String , String > parseProperties ( String s ) { Map < String , String > properties = new HashMap < String , String > ( ) ; if ( ! StringUtils . isEmpty ( s ) ) { Matcher matcher = PROPERTIES_PATTERN . matcher ( s ) ; int start = 0 ; while ( matcher . find ( ) ) { addKeyValuePairAsProperty ( s . sub...
Parses a String comprised of 0 or more comma - delimited key = value pairs .
23,192
public synchronized HttpServer < Buffer , Buffer > start ( ) throws Exception { if ( server == null ) { server = createProtocolListener ( ) ; } return server ; }
Start a server .
23,193
public void setSegmentReject ( String reject ) { if ( ! StringUtils . hasText ( reject ) ) { return ; } Integer parsedLimit = null ; try { parsedLimit = Integer . parseInt ( reject ) ; segmentRejectType = SegmentRejectType . ROWS ; } catch ( NumberFormatException e ) { } if ( parsedLimit == null && reject . contains ( ...
Sets the segment reject as a string . This method is for convenience to be able to set percent reject type just by calling with 3% and otherwise it uses rows . All this assuming that parsing finds % characher and is able to parse a raw reject number .
23,194
public void setReadTimeout ( int millis ) { ClientHttpRequestFactory f = getRequestFactory ( ) ; if ( f instanceof SimpleClientHttpRequestFactory ) { ( ( SimpleClientHttpRequestFactory ) f ) . setReadTimeout ( millis ) ; } else { ( ( HttpComponentsClientHttpRequestFactory ) f ) . setReadTimeout ( millis ) ; } }
The read timeout for the underlying URLConnection to the twitter stream .
23,195
public void setConnectTimeout ( int millis ) { ClientHttpRequestFactory f = getRequestFactory ( ) ; if ( f instanceof SimpleClientHttpRequestFactory ) { ( ( SimpleClientHttpRequestFactory ) f ) . setConnectTimeout ( millis ) ; } else { ( ( HttpComponentsClientHttpRequestFactory ) f ) . setConnectTimeout ( millis ) ; } ...
The connection timeout for making a connection to Twitter .
23,196
private void handleTextWebSocketFrameInternal ( TextWebSocketFrame frame , ChannelHandlerContext ctx ) { if ( logger . isTraceEnabled ( ) ) { logger . trace ( String . format ( "%s received %s" , ctx . channel ( ) , frame . text ( ) ) ) ; } addTraceForFrame ( frame , "text" ) ; ctx . channel ( ) . write ( new TextWebSo...
simple echo implementation
23,197
private void addTraceForFrame ( WebSocketFrame frame , String type ) { Map < String , Object > trace = new LinkedHashMap < > ( ) ; trace . put ( "type" , type ) ; trace . put ( "direction" , "in" ) ; if ( frame instanceof TextWebSocketFrame ) { trace . put ( "payload" , ( ( TextWebSocketFrame ) frame ) . text ( ) ) ; }...
add trace information for received frame
23,198
@ SuppressWarnings ( { "rawtypes" , "unchecked" } ) private IntegrationFlowBuilder getFlowBuilder ( ) { IntegrationFlowBuilder flowBuilder ; URLName urlName = this . properties . getUrl ( ) ; if ( this . properties . isIdleImap ( ) ) { flowBuilder = getIdleImapFlow ( urlName ) ; } else { MailInboundChannelAdapterSpec a...
Method to build Integration Flow for Mail . Suppress Warnings for MailInboundChannelAdapterSpec .
23,199
private IntegrationFlowBuilder getIdleImapFlow ( URLName urlName ) { return IntegrationFlows . from ( Mail . imapIdleAdapter ( urlName . toString ( ) ) . shouldDeleteMessages ( this . properties . isDelete ( ) ) . javaMailProperties ( getJavaMailProperties ( urlName ) ) . selectorExpression ( this . properties . getExp...
Method to build Integration flow for IMAP Idle configuration .