문제 코드 #include #include #include using namespace std; // Homework 3 // Write C++ code that calculates Call option and Put option using Monte Carlo Approach. // Compare it with the formula for Black Scholes equation. // You may use any value for risk-free rate and expiration date. // 함수 선언 vector generate_discrete_path(double rf, double sigma, int tau, double st); vector generate_continuous_path(double rf, double sigma, int tau, double st); double calc...
#
montecarlo
#
코딩
#
시뮬레이션
#
몬테카를로
#
금융공학
#
금융
#
계산금융
#
simulation
#
pricing
#
프로그래밍