Notebook 3 Flashcards

(32 cards)

1
Q

What is the black-scholes formula for call and put options?

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

How do you write a euro_call_BS_pricer function?

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

How do you write a euro_put_BS_pricer function?

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

What is the Put-Call Parity?

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

Verify the Put-Call parity,

Hint: Consider the grid of spot prices form the previous question. Verify the put-call parity graphically. Then use numpy.linalg.norm ot ocmpute the norm of the difference, you can use the standard 2-norm, 1-norm and inf-norm

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

How can we use the Put-Call Parity to generate a European_BS_pricer function for both call and put options?

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

What is important to do throughout the code (and most likely in the exam)?

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

If our BS_pricer function returns multiple values, how can we get it to price just one of them?

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

What are the usual steps for calculating a European call option by simple/naive Monte Carlo?

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

What is the formula for the discounted payoff of a call option?

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

Calculate the solution use GBM formula with X~N(0,1)

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

What is the solution using WT~(0,T)

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

What are the three processes for Brownian Motion we need to know?

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

What is the expectation and variance of a call option payoff (mathematically)?

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

What is the SEM and what do we normal use for the confidence bands?

17
Q

BigO of Monte Carlo methods?How does it compare to grid methods? Why is MC widely used?

18
Q

Standard algorithm for European Call Options?

19
Q

What is the function for calculating the BS_call_delta()?

20
Q

What is the function for calculating the BS_put_delta()?

21
Q

What is the function for calculating BS_delta()?

22
Q

How do you code the function the MC_euro_call_delta()?

A

Using path-recycling

23
Q

How do you code the function MC_euro_put_delta()?

A

Using path-recycling

24
Q

What should you always do when estimating MC European Option prices?

How do you go about it?

25
How would I code a plot my European call option spot prices against the Option Value?
26
How would I code a plot my European put option spot prices against the Option Value?
27
How would i code a plot for my European call option deltas against their option values?
28
How would i code a plot for my European put option deltas against their option values?
29
If asked what the usual import libraries are for this Notebook?
30
Main option Greeks?
31
What is the standard algorithm for computing the delta of a call option?
32