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

📄 bin_am_partials_call.cc

📁 Financial Recipes
💻 CC
字号:
#include <cmath>#include <algorithm>#include "fin_recipes.h"void option_price_partials_american_call_binomial(double S,  // spot price						  double X,  // Exercise price,						  double r,     // interest rate						  double sigma, // volatility						  double time,  // time to maturity						  int no_steps, // steps in binomial						  double& delta, //  partial wrt S						  double& gamma, //  second prt wrt S						  double& theta, // partial wrt time						  double& vega,  //  partial wrt sigma						  double& rho){   // partial wrt r   vector<double> prices(no_steps+1);   vector<double> call_values(no_steps+1);   double delta_t =(time/no_steps);   double R = exp(r*delta_t);   double Rinv = 1.0/R;   double u = exp(sigma*sqrt(delta_t));   double d = 1.0/u;   double uu= u*u;   double pUp   = (R-d)/(u-d);   double pDown = 1.0 - pUp;   prices[0] = S*pow(d, no_steps);   for (int i=1; i<=no_steps; ++i) prices[i] = uu*prices[i-1];   for (int i=0; i<=no_steps; ++i) call_values[i] = max(0.0, (prices[i]-X));   for (int CurrStep=no_steps-1; CurrStep>=2; --CurrStep) {      for (int i=0; i<=CurrStep; ++i)   {	 prices[i] = d*prices[i+1];	 call_values[i] = (pDown*call_values[i]+pUp*call_values[i+1])*Rinv;	 call_values[i] = max(call_values[i], prices[i]-X);        // check for exercise      };   };    double f22 = call_values[2];   double f21 = call_values[1];   double f20 = call_values[0];   for (int i=0;i<=1;i++) {      prices[i] = d*prices[i+1];      call_values[i] = (pDown*call_values[i]+pUp*call_values[i+1])*Rinv;      call_values[i] = max(call_values[i], prices[i]-X);        // check for exercise    };   double f11 = call_values[1];   double f10 = call_values[0];   prices[0] = d*prices[1];   call_values[0] = (pDown*call_values[0]+pUp*call_values[1])*Rinv;   call_values[0] = max(call_values[0], S-X);        // check for exercise on first date   double f00 = call_values[0];   delta = (f11-f10)/(S*u-S*d);   double h = 0.5 * S * ( uu - d*d);   gamma = ( (f22-f21)/(S*(uu-1)) - (f21-f20)/(S*(1-d*d)) ) / h;    theta = (f21-f00) / (2*delta_t);   double diff = 0.02;   double tmp_sigma = sigma+diff;   double tmp_prices = option_price_call_american_binomial(S,X,r,tmp_sigma,time,no_steps);   vega = (tmp_prices-f00)/diff;    diff = 0.05;   double tmp_r = r+diff;   tmp_prices = option_price_call_american_binomial(S,X,tmp_r,sigma,time,no_steps);   rho = (tmp_prices-f00)/diff; };

⌨️ 快捷键说明

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