April 21st, 2003, 5:23 pm
Are you looking for the probability that the stock price will exceed the target price at the expiration, or the probability that the stock price will be above the target price at some point before expiration? The first is a simple Normal distribution formula:S0 = current stock priceT = target stock prices = volatilityd = driftt = time to expiryN[] is the standard cumulative Normal functionthen:N[(ln(S0/T) + d*t)/s*t^0.5 - s*t^0.5]is the probability of St being above the target price. You would use the volatility parameter for t. Be careful to distinguish whether the distribution parameters are actual or risk-neutral (in the latter case, d should equal the risk-free rate, but you get a pseudo probability for an answer, not an actual probability.In the second case there is a slightly less simple formula if the volatility is constant. If not, you'll probably have to solve by simulation.
Last edited by
Aaron on April 20th, 2003, 10:00 pm, edited 1 time in total.