MATLAB European Call Flashcards
1
Q
Generate M samples from N(0,1)
A
X = randn(M,1)
2
Q
Simulate M trajectories in one step
A
ST = S0exp((r-0.5sigma^2)T+sigmasqrt(T)*X)
3
Q
Define payoff
A
payoff = max(ST-K,0)
4
Q
Discount Factor
A
discountFactor = exp(-r*T)
5
Q
MC price
A
price_MC = discountFactor*mean(payoff)
6
Q
standard deviation of MC estimate
A
stdev_MC = discountFactor*std(payoff)/sqrt(M)