Serving the Quantitative Finance Community

 
User avatar
drona
Topic Author
Posts: 0
Joined: February 10th, 2002, 1:34 pm

Estimating the Probability of a stock achieving target value.

April 21st, 2003, 4:11 pm

Not homework :-)pointers to lecture notes greatly appreciated .1. Very simple, but would appreciate if someone could educate me on the theory. Given the current stock price (start value), target stock price , number of days, and historical volatility, how do I get the probability that the stock would achieve that value. I know the assumptions (normdist etc), would appreciate if someone could point me to lecture notes etc2. Also what volatility data should I use 3 month vol, 1 month vol etc. Does this depend on the number of days paramater ? 3. Are there other ways to do this, I have heard about monte carlo's etc.
 
User avatar
Aaron
Posts: 4
Joined: July 23rd, 2001, 3:46 pm

Estimating the Probability of a stock achieving target value.

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.
 
User avatar
mj
Posts: 12
Joined: December 20th, 2001, 12:32 pm

Estimating the Probability of a stock achieving target value.

April 21st, 2003, 5:53 pm

the distributions for min and max of a Brownian motion with drift can be found in Karatzas and Shreve, or Musiela and Rutowski. MJ
 
User avatar
drona
Topic Author
Posts: 0
Joined: February 10th, 2002, 1:34 pm

Estimating the Probability of a stock achieving target value.

April 21st, 2003, 6:29 pm

Thank you,I am looking for the probability that the stock price will exceed the target price at the expiration. Hence I willuse your formula. Regards
 
User avatar
asd
Posts: 17
Joined: August 15th, 2002, 9:50 pm

Estimating the Probability of a stock achieving target value.

April 22nd, 2003, 4:23 am

I had heard of State Price Density, and assumed that it is related to probabilties for share price movements,but don't know exactly .Can someone please throw some light when it is used?Thanks,asd
 
User avatar
Aaron
Posts: 4
Joined: July 23rd, 2001, 3:46 pm

Estimating the Probability of a stock achieving target value.

April 22nd, 2003, 7:14 pm

State price densities are pseudo-probabilities. They obey the mathmatical rules of probabilities but they reflect the utility of a state in addition to its probability.Say a bond has 1 chance in 100 of defaulting in the next year. That's a probability. Say a credit default swap that pays $1,000 if the bond defaults in the next year costs $20. The state price density is 2%. It's higher than the probability because money is more valuable in a bad state (default) than a good one (no default).You can value a security by taking its expected value under the state price densities, and discounting at the risk free rate of interest. This is called risk-neutral pricing.
 
User avatar
Vlasoff
Posts: 0
Joined: December 13th, 2002, 9:43 am

Estimating the Probability of a stock achieving target value.

May 27th, 2003, 7:55 pm

DronaCan we divide your task into 2?• Get the expected price of the stock at the time t (using the drift/So as an expected rate of return): Ln(St)=(Ln (So)+(d/So-(s^2)*t));• Take the matter from time T, calculating the relevant Z-value :Z=(Ln(T)-Ln(St))/(s*t^2)Well described in John C. Hull, chapter 12
Last edited by Vlasoff on May 27th, 2003, 10:00 pm, edited 1 time in total.