Evaluates the expected future price range in accordance with the Black-Scholes model to a given probability.
An array of length two where the first element is the lower bound of the price range and the second elements is the upper bound of the price range.
That is, we evaluate the expected price range which an asset is expected the lie to a given probability at a future time in accordance with the Black-Scholes Model.
Before this method is called you must have set the following:
What is the price range of a stock in six month time to a 95 percent probability in accordance with the Black-Scholes model, when the present price of the stock on 4th January 2006, is 40 dollars, the expected return is 16 percent per year, with a volatility of 20 percent per year?
initialPrice = 40, set using SetInitialPrice.
probability = 0.95, set using SetProbability.
expectedReturn = 0.16, set using SetExpectedReturn.
volatility = 0.20, set using SetVolatility.
startDate = 4/1/2006, set using SetTime(Date, Date).
endDate = 3/7/2006, set using SetTime(Date, Date).
By calling this method using the above parameters you will find that the price range of the asset at the opening on 4th July 2006, to a probability of 95 percent in accordance with the Black-Scholes model is: [32.5138, 56.6048]. That is, there is a 95 percent probability that the stock considered price will be greater (or equal to) 32.5138, and less than (or equal to) 56.6048, at the opening in the 4th July 2006.
PriceRangeStateful Class | WebCab.COM.Finance.Options Namespace