Financial Numerical Recipes in C ++. Bernt Arne Ødegaard Contents On C++ and programming. Compiling and linking The structure of a C++ program Types Operations Functions and libraries Templates and libraries Flow control Input Output Splitting up a program Namespaces Extending the language, the class concept. date, an example class Const references The value of time Present value. Internal rate ..
Average, lookback and other exotic options We now look at a type of options that has received a lot of attention in later years. The distinguishing factor of these options is that they depend on the whole price path of the underlying security between today and the option maturity. Bermudan options A Bermudan option is, as the name implies,13.1 a mix of an European and American option. It is a st..
좋은 인맥을 구축하는 5가지 방법 1. 상대방의 처지에서 생각하라 상대방을 소중히 대하는 마음을 갖는다. 자신의 처지, 형편, 이익 밖에는 안중에 없는 자기중심적인 사람은 자신만의 세계에 빠져 소중한 것을 놓쳐버릴 수 있다. 2. 함부로 부탁하지 마라 부탁을 가볍게 여기는 사람들은 좋은 사람을 만나면 금세 사람이나 일을 소개시켜 달라든가 돈을 빌려달라고 하는 경우가 많다. 그런데 서로 신뢰를 쌓기도 전에 쉽게 부탁을 하면 결과적으로 보면 어렵게 만든 인맥을 잃을 수도 있다. 즉 좋은 인맥을 만들고 싶다면 함부로 부탁하지 말아야 한다. 3. 불필요하게 만나거나 전화하지 마라 특별히 볼일도 없으면서 바쁜 사람(인맥을 맺었으면 하는 사람)에게 만나자고 하는 것은 좋지 않다. 전화를 걸 때도 상대를 배려하지 않..
clc; clear; %Random Generating Numbers n=10000; %12 Uniform Random Number Method a=rand(n,12); new_rand=zeros(n,1); for i=1:12 new_rand = new_rand+ a(:, i) end norm_rand = new_rand - 6; subplot(1,3,1); histfit(norm_rand); xlabel('12-Method'); %Box-Muller Method U1=rand(n,1); U2=rand(n,1); BXNORM=sqrt(-2*log(U1)).*cos(2*pi*U2); subplot(1,3,2); histfit(BXNORM); xlabel('Box-Muller Method'); %Polar ..
// Switch/case를 이용한 European OPtion Pricing 계산기(Black-Scholes Model 이용) // by remings(http://remings.tistory.com) // For my C++ Educational Purpose #include #include using namespace std; //Cumulative Normal Distribution Code double N(const double x) { const double b1 = 0.319381530; const double b2 = -0.356563782; const double b3 = 1.781477937; const double b4 = -1.821255978; const double b5 = 1...
- Total
- Today
- Yesterday
- 리보중단
- 와인
- LG
- mathematical finance
- 세식구
- 크레딧투자
- JPY
- 포트폴리오
- RfR
- Fallback rate
- 꿀떡이
- 가을
- XAG
- SOFR
- 유동성최악
- 회고2023
- CHF
- Risk Free Rate
- 금융수학
- Volatility Ratio
- finance
- 금융공학
- recession
- computational finance
- 어렵다크레딧
- VBA
- random gereragtor
- market convention
- Linear Gaussian Model
- financial
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |