📄 black_scholes_price_payout_put.cc
字号:
// file: black_scholes_price_// author: Bernt A Oedegaard// Calculation of the Black Scholes option price formula, // special case where the underlying is paying out a yield of b.#include <math.h> // mathematical library#include "normdist.h" // this defines the normal distribution double option_price_european_put_payout( double S, // spot price double X, // Strike (exercise) price, double r, // interest rate double q, // yield on underlying double sigma, double time) { double sigma_sqr = pow(sigma,2); double time_sqrt = sqrt(time); double d1 = (log(S/X) + (r-q + 0.5*sigma_sqr)*time)/(sigma*time_sqrt); double d2 = d1-(sigma*time_sqrt); double put_price = X * exp(-r*time)*N(-d2)-S*exp(-q*time)*N(-d1); return put_price;};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -