⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 black_scholes_price_payout_call.cc

📁 Financial Recipes
💻 CC
字号:
#include <cmath>              // mathematical library#include "normdist.h"          // this defines the normal distribution double option_price_european_call_payout( double S, // spot price					  double X, // Strike (exercise) price,					  double r,  // interest rate					  double q,  // yield on underlying					  double sigma, // volatility					  double time) { // time to maturity    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 call_price = S * exp(-q*time)* N(d1) - X * exp(-r*time) * N(d2);    return call_price;};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -