Quantitative Risk Management in R
Alexander McNeil
Instructor
K <- 50T <- 2t <- 0S <- 40r <- 0.005sigma <- 0.25Black_Scholes(t, S, r, sigma, K, T, "call")
2.619183
Black_Scholes(t, S, r, sigma*1.2, K, T, "call")
3.677901
plot(VIX)

Quantitative Risk Management in R