Transposing Excel Formula

S

Steveal

I have the following formula to calculate the probability of an option
trading below price B3

Prob = =NORMSDIST((LN(B3/B2))/((B4/100)*SQRT(B5/365)))

B3 = Target Price
B2 = Stock Price
B4 = Implied Volatility
B5 = Days to Expiration

I want to transpose the formula to solve for B3, assuming a value for
Prob.

Here's what I got, but it doesn't give the expected answer - did I
make a mistake in these unfamiliar functions?:

B3= EXP(NORMSINV(Prob))*((B4/100)*SQRT(B5/365))*B2
 
A

Alan

I have the following formula to calculate the probability of an option
trading below price B3

Prob = =NORMSDIST((LN(B3/B2))/((B4/100)*SQRT(B5/365)))

B3 = Target Price
B2 = Stock Price
B4 = Implied Volatility
B5 = Days to Expiration

I want to transpose the formula to solve for B3, assuming a value for
Prob.

Here's what I got, but it doesn't give the expected answer - did I
make a mistake in these unfamiliar functions?:

B3= EXP(NORMSINV(Prob))*((B4/100)*SQRT(B5/365))*B2

Looking at your original formula shouldn't the transposed version be

B3 = EXP(NORMSINV(Prob)*((B4/100)*SQRT(B5/365)))*B2 ???
 
S

Steveal

Alan,

YES!

Thanks,

Steve

Looking at your original formula shouldn't the transposed version be

B3 = EXP(NORMSINV(Prob)*((B4/100)*SQRT(B5/365)))*B2 ???
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top