Click or drag to resize

BinomialOptionValue Method (Double, Double, Double, Dividend, Double, OptionType, OptionStyle, Int32, Double)

Computes option value for underlying asset price with dividends using Vellekoop method.

Namespace:  FinMath.Derivatives
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
public static double OptionValue(
	double stockPrice,
	double strikePrice,
	double riskFreeRate,
	Dividend[] dividends,
	double timeToMaturity,
	OptionType optionType,
	OptionStyle optionStyle,
	int steps,
	double volatility
)

Parameters

stockPrice
Type: SystemDouble
Stock price of the underlying asset.
strikePrice
Type: SystemDouble
Strike price of the undelying asset.
riskFreeRate
Type: SystemDouble
Risk-free interest rate.
dividends
Type: FinMath.DerivativesDividend
Underlying asset discrete dividends.
timeToMaturity
Type: SystemDouble
Time to the expiration date.
optionType
Type: FinMath.DerivativesOptionType
Type of option (call/put).
optionStyle
Type: FinMath.DerivativesOptionStyle
Option style.
steps
Type: SystemInt32
Number of steps in binomial model.
volatility
Type: SystemDouble
The underlying asset volatility.

Return Value

Type: Double
Option value.
See Also