BlackScholes-Delta ttm


Autor/Urheber:
Größe:
1024 x 768 Pixel (7072 Bytes)
Beschreibung:
Der verlauf des Delta eines Calls nach Black Scholes mit der Zeit; jeweils im, am uns aus dem Geld
Lizenz:
Credit:

selbst erstellt mit GNU R. R-Quelltext: bsDelta <-function (flag="c",S,t=0,T=1,K=100,sigma=0.20,r=0.03) { d1=1/(sigma*sqrt(T-t))*(log(S/K)+(r+sigma^2/2)*(T-t)) d2=d1-sigma*sqrt(T-t) if (flag=="c") { return(pnorm(d1)) } else if(flag=="p") { return(-pnorm(-d1)) } } cols=rainbow(3) t=seq(from=0,to=5,length=500) png(filename = "BlackScholes-Delta_ttm.png", width=1024, height=768, pointsize = 12)

par(bg="lightgrey", oma = c(0,0,2,0)) plot(t,bsDelta(flag="c",S=80,t=0,T=t),type="n",ylim=c(0,1),xlab="time to maturity",ylab="Delta des Calls") lines(t,bsDelta(flag="c",S=80,t=0,T=t),type="l",lwd=3,col=cols[1]) lines(t,bsDelta(flag="c",S=100,t=0,T=t),type="l",lwd=3,col=cols[2]) lines(t,bsDelta(flag="c",S=120,t=0,T=t),type="l",lwd=3,col=cols[3]) legend(x=3.8,y=0.12,legend=c("aus dem Geld","am Geld","im Geld"),col=cols,lwd=3) title(main="Call")

title(main="Das Delta nach Black Scholes", cex.main=2, outer=TRUE)

dev.off()
Bild teilen:
Facebook   Twitter   Pinterest   WhatsApp   Telegram   E-Mail
Weitere Informationen zur Lizenz des Bildes finden Sie hier. Letzte Aktualisierung: Tue, 30 Apr 2024 18:23:52 GMT

Relevante Bilder


Relevante Artikel

Black-Scholes-Modell

Das Black-Scholes-Modell ist ein finanzmathematisches Modell zur Bewertung von Finanzoptionen, das von Fischer Black und Myron Samuel Scholes 1973 veröffentlicht wurde und als ein Meilenstein der Finanzwirtschaft gilt, siehe Abschnitt Preisformeln für das Ergebnis. .. weiterlesen