Guest User

Math

a guest
Jul 16th, 2019
2,762
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. A simplistic approach to stock movements
  2.  
  3. Suppose a stock is currently worth $1, has a probability P of going up 1% and a probability (1-P) of going down 1% (for the day).
  4.  
  5. The expectation of the stock after two days is:
  6. P^2(1.01)^2 + 2P(1 - P)(1.01)(.99) + (1 - P)^2(.99)^2
  7. = (P(1.01) + (1 - P)(.99))^2
  8. = (1.01P + .99 - .99P)^2
  9. = (.02P + .99)^2
  10.  
  11. If P = 1/2, the expectation is 1 (no change in money). If P = 0.51 = 51%, the expectation is $1.00040004.
  12.  
  13. Repeat the math with up 3% and down 3% and you get
  14. = (P(1.03) + (1 - P)(.97))^2
  15. = (.06P + .97)^2
  16.  
  17. If P = 1/2, the expectation is 1 (no change in money). If P = 0.51 = 51%, the expectation is $1.00120036. Note that this is MORE than 3 times the above.
Advertisement
Add Comment
Please, Sign In to add comment