Question: Plot a diagram. R programming language. CashOrNothingOption = function(S, k, Time, r, q, sigma) { d1 = (log(S / k) + (r - q +

Plot a diagram. R programming language.

CashOrNothingOption = function(S, k, Time, r, q, sigma) {
d1 = (log(S / k) + (r - q + sigma ^ 2 / 2) * Time) / (sigma * sqrt(Time))
d2 = d1 - sigma * sqrt(Time)
if(k>S){
return (k * exp (-r * Time) * (-d2))
}else
print("zero")
}

Step by Step Solution

3.51 Rating (154 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

The code ... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Computer Engineering Questions!