MATLAB European Call Flashcards

1
Q

Generate M samples from N(0,1)

A

X = randn(M,1)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Simulate M trajectories in one step

A

ST = S0exp((r-0.5sigma^2)T+sigmasqrt(T)*X)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Define payoff

A

payoff = max(ST-K,0)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Discount Factor

A

discountFactor = exp(-r*T)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

MC price

A

price_MC = discountFactor*mean(payoff)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

standard deviation of MC estimate

A

stdev_MC = discountFactor*std(payoff)/sqrt(M)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly