Skip to content

Plot for jump point

2 messages · kate, jim holtman

#
Try this:

ratio<-seq(0,1,by=0.01)
payoff<-NULL
for (i in 1:length(ratio) )
{
payoff1<-100*(ratio[i]>=0.7)+max(100*(1+(ratio[i]-1)*2),0)*(ratio[i]<0.7)
payoff<-c(payoff,payoff1)
}
payoff[70] <- NA  # force no line
plot(ratio,payoff, xlab='ST/S0', ylab='Payoff',type='l')
points(c(ratio[69], ratio[71]), c(payoff[69], payoff[71]), pch=c(1,16))
On Sun, Mar 30, 2008 at 4:17 PM, kate <yhsu6 at uiuc.edu> wrote: