tarf_monte_carlo 3.53 → 3.58

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 60b2cf5e21d6d9a92dbef8d1988f1a0988b31279d7010aed5eec76327968bd29
4
- data.tar.gz: b93ce27d9a66eb82683d3b1dff6aeb9c2bd98796bca3ca07fca85ab0fdf007d3
3
+ metadata.gz: 393bd0b02941349be6693349a14b57a276a0dd46de997ce6bf467556a0ddeb4b
4
+ data.tar.gz: 98742767158d8b544991ce09bc8a532e8e3a67430ee71fda21de47cc49af400c
5
5
  SHA512:
6
- metadata.gz: 6231ef9420bd8dd40b08344732b75b741b76e6665d2aa1b89948b9f4ea96540b460759a1810cb07e64d2595dd3b978554eca426ca250d9f2f650b6955598eab5
7
- data.tar.gz: 68ee5e27fb0c8789362bce8af4f69fa1f7e428e04752f298d6b053f4c23d53f703968eb3eb2c0ce011f20e315237bd3ee5701c702def7f748367d9bab0525a3c
6
+ metadata.gz: 983d134a318259bce1eb74760cb481c0cb185f341927900907b7df581ea2b1dbd8d5c05304833d1e38e6fa93b3d056eb4de58e42bf542b5c55537452869aa7a2
7
+ data.tar.gz: dad8cb62f6b347d2f3719009c7393a30245a24b33cfb85c941467d86215b62334cd505da1f3ca0588422cc700184ac48eb327cf4b409e2d9bbfbd9708a9fe08f
@@ -45,6 +45,12 @@
45
45
  #define FX_AMERICAN_BARRIER_KNOCKOUT_DISCRETE 14
46
46
  #define FX_AMERICAN_BARRIER_WINDOW_KNOCKIN 15
47
47
  #define FX_AMERICAN_BARRIER_WINDOW_KNOCKOUT 16
48
+ #define FX_AMERICAN_BARRIER_KIKO_UNTIL_EXP 17
49
+ #define FX_AMERICAN_BARRIER_KIKO_UNTIL_KI 18
50
+ #define FX_AMERICAN_BARRIER_BINARY_IN_DISCRETE 19
51
+ #define FX_AMERICAN_BARRIER_BINARY_OUT_DISCRETE 20
52
+ #define FX_AMERICAN_BARRIER_BINARY_CALLPUT_IN_DISCRETE 21
53
+ #define FX_AMERICAN_BARRIER_BINARY_CALLPUT_OUT_DISCRETE 22
48
54
 
49
55
  #define DATAPOINTS 200 // data for plotting
50
56
  #define BARRIER_DP 4 // data for plotting
@@ -63,6 +69,7 @@ double european_payoff(double, double, int, int, double);
63
69
  double get_equivalent_notional(int, double, float);
64
70
  double get_equivalent_rebate(int, double, float, int);
65
71
  bool barrier_variations(int);
72
+ bool double_barrier_variations(int);
66
73
  // Prototype for our methods - methods are prefixed by 'method_' here
67
74
  VALUE method_box_muller( VALUE );
68
75
  VALUE method_run_monte_carlo( VALUE, VALUE );
@@ -102,7 +109,11 @@ double get_equivalent_rebate(int conversion_sign, double rebate, float rate, int
102
109
  }
103
110
 
104
111
  bool barrier_variations(int KType){
105
- return (KType == FX_AMERICAN_BARRIER_KNOCKIN_DISCRETE || KType == FX_AMERICAN_BARRIER_KNOCKOUT_DISCRETE || KType == FX_AMERICAN_BARRIER_WINDOW_KNOCKIN || KType == FX_AMERICAN_BARRIER_WINDOW_KNOCKOUT);
112
+ return (KType == FX_AMERICAN_BARRIER_KNOCKIN_DISCRETE || KType == FX_AMERICAN_BARRIER_KNOCKOUT_DISCRETE || KType == FX_AMERICAN_BARRIER_WINDOW_KNOCKIN || KType == FX_AMERICAN_BARRIER_WINDOW_KNOCKOUT || KType == FX_AMERICAN_BARRIER_KIKO_UNTIL_EXP || KType == FX_AMERICAN_BARRIER_KIKO_UNTIL_KI || KType == FX_AMERICAN_BARRIER_BINARY_IN_DISCRETE || KType == FX_AMERICAN_BARRIER_BINARY_OUT_DISCRETE || KType == FX_AMERICAN_BARRIER_BINARY_CALLPUT_IN_DISCRETE || KType == FX_AMERICAN_BARRIER_BINARY_CALLPUT_OUT_DISCRETE);
113
+ }
114
+
115
+ bool double_barrier_variations(int KType){
116
+ return (KType == FX_AMERICAN_BARRIER_WINDOW_KNOCKIN || KType == FX_AMERICAN_BARRIER_WINDOW_KNOCKOUT || KType == FX_AMERICAN_BARRIER_KIKO_UNTIL_EXP || KType == FX_AMERICAN_BARRIER_KIKO_UNTIL_KI);
106
117
  }
107
118
  // main method for running monte carlo simulation from sidekiq worker/outside method
108
119
  VALUE method_run_monte_carlo( VALUE self, VALUE args ) {
@@ -122,6 +133,7 @@ VALUE method_run_monte_carlo( VALUE self, VALUE args ) {
122
133
  int NL = NUM2INT( rb_hash_aref(MCInputs, rb_str_new2("legs_count")) );
123
134
  int BS = NUM2INT( rb_hash_aref(MCInputs, rb_str_new2("buy_sell")) );
124
135
  double K = NUM2DBL( rb_hash_aref(MCInputs, rb_str_new2("knockout")) );
136
+ int CP = NUM2DBL( rb_hash_aref(MCInputs, rb_str_new2("callput")) );
125
137
  int KType = NUM2INT( rb_hash_aref(MCInputs, rb_str_new2("knockout_type")) );
126
138
  double S = NUM2DBL( rb_hash_aref(MCInputs, rb_str_new2("spot_rate")) );
127
139
  int Ko_compare_mult = NUM2INT( rb_hash_aref(MCInputs, rb_str_new2("multiplier")) );
@@ -195,7 +207,7 @@ VALUE method_run_monte_carlo( VALUE self, VALUE args ) {
195
207
  for (leg = 0; leg < NL; ++leg) {
196
208
  Barrier_array[leg] = NUM2DBL( rb_ary_entry(Brs, leg) );
197
209
  Rebate_array[leg] = NUM2DBL( rb_ary_entry(Rbts, leg) );
198
- if(KType == FX_AMERICAN_BARRIER_WINDOW_KNOCKIN || KType == FX_AMERICAN_BARRIER_WINDOW_KNOCKOUT){
210
+ if(double_barrier_variations(KType)){
199
211
  Barrier2_array[leg] = NUM2DBL( rb_ary_entry(Brs2, leg) );
200
212
  }
201
213
  }
@@ -241,8 +253,7 @@ VALUE method_run_monte_carlo( VALUE self, VALUE args ) {
241
253
  sim_dash_neg[leg] = 0.0;
242
254
  }
243
255
 
244
- int knockedLeg = -1;
245
- int knockedLeg_dash = -1;
256
+ int knockedLeg = -1, knockedLeg_dash = -1, knockedLeg2 = -1, knockedLeg2_dash = -1;
246
257
  // legs loop start
247
258
  for( leg = 0; leg < NL; ++leg ) {
248
259
  double eps, eps_dash, drift, vSqrdt, profit_loss, profit_loss_dash;
@@ -259,7 +270,7 @@ VALUE method_run_monte_carlo( VALUE self, VALUE args ) {
259
270
  Spot = Spot * exp( drift + vSqrdt * eps );
260
271
  Spot_dash = Spot_dash * exp( drift + vSqrdt * eps_dash );
261
272
 
262
- if(KType == FX_AMERICAN_BARRIER_KNOCKIN_DISCRETE || KType == FX_AMERICAN_BARRIER_KNOCKOUT_DISCRETE){
273
+ if(KType == FX_AMERICAN_BARRIER_KNOCKIN_DISCRETE || KType == FX_AMERICAN_BARRIER_KNOCKOUT_DISCRETE || KType == FX_AMERICAN_BARRIER_BINARY_IN_DISCRETE || KType == FX_AMERICAN_BARRIER_BINARY_OUT_DISCRETE || KType == FX_AMERICAN_BARRIER_BINARY_CALLPUT_IN_DISCRETE || KType == FX_AMERICAN_BARRIER_BINARY_CALLPUT_OUT_DISCRETE){
263
274
  profit_loss = Spot;
264
275
  profit_loss_dash = Spot_dash;
265
276
 
@@ -272,6 +283,23 @@ VALUE method_run_monte_carlo( VALUE self, VALUE args ) {
272
283
  if(knockedLeg_dash == -1 && knockin_dash >= 0){
273
284
  knockedLeg_dash = leg;
274
285
  }
286
+ } else if(KType == FX_AMERICAN_BARRIER_KIKO_UNTIL_KI || KType == FX_AMERICAN_BARRIER_KIKO_UNTIL_EXP){
287
+ profit_loss = Spot;
288
+ profit_loss_dash = Spot_dash;
289
+
290
+ if(knockedLeg == -1 && (Spot >= *(Barrier_array + leg))){
291
+ knockedLeg = leg;
292
+ }
293
+ if(knockedLeg_dash == -1 && (Spot_dash >= *(Barrier_array + leg))){
294
+ knockedLeg_dash = leg;
295
+ }
296
+
297
+ if(knockedLeg2 == -1 && (Spot >= *(Barrier2_array + leg))){
298
+ knockedLeg2 = leg;
299
+ }
300
+ if(knockedLeg2_dash == -1 && (Spot_dash >= *(Barrier2_array + leg))){
301
+ knockedLeg2_dash = leg;
302
+ }
275
303
  } else if(KType == FX_AMERICAN_BARRIER_WINDOW_KNOCKIN || KType == FX_AMERICAN_BARRIER_WINDOW_KNOCKOUT){
276
304
  profit_loss = Spot;
277
305
  profit_loss_dash = Spot_dash;
@@ -438,6 +466,131 @@ VALUE method_run_monte_carlo( VALUE self, VALUE args ) {
438
466
  else{
439
467
  sim_dash_pos[NL-1] = get_equivalent_rebate(rebate_conversion_sign, ( *( Rebate_array + 0 ) ), sim_dash[NL-1], dir_sign);
440
468
  }
469
+ if ((point_pos < DATAPOINTS) && (sim_count % INTERVAL) == 0){
470
+ metrics[0][point_pos] = sim[NL-1];
471
+ metrics[1][point_pos] = (knockedLeg >= 0) ? ( *( Xs_array + (knockedLeg) ) ) : 0;
472
+ metrics[3][point_pos] = knockedLeg;
473
+ metrics[0][point_pos+1] = sim_dash[NL-1];
474
+ metrics[1][point_pos+1] = (knockedLeg_dash >= 0) ? ( *( Xs_array + (knockedLeg_dash) ) ) : 0;
475
+ metrics[3][point_pos+1] = knockedLeg_dash;
476
+ }
477
+ } else if(KType == FX_AMERICAN_BARRIER_BINARY_IN_DISCRETE || KType == FX_AMERICAN_BARRIER_BINARY_CALLPUT_IN_DISCRETE){
478
+ if(knockedLeg >= 0){
479
+ int legIndex = (CP == 2) ? knockedLeg : (NL - 1);
480
+ int itm = true;
481
+ if (CP <= 1){
482
+ double tempPayOff = european_payoff(( *( Xs_array + legIndex ) ), sim[NL-1], cp_sign, dir_sign, 1);
483
+ if(tempPayOff == 0){
484
+ itm = false;
485
+ }
486
+ }
487
+ if (itm){
488
+ sim_pos[legIndex] = get_equivalent_rebate(rebate_conversion_sign, ( *( Rebate_array + 0 ) ), sim[legIndex], dir_sign);
489
+ }
490
+ }
491
+
492
+ if(knockedLeg_dash >= 0){
493
+ int legIndex_dash = (CP == 2) ? knockedLeg_dash : (NL - 1);
494
+ int itm = true;
495
+ if (CP <= 1){
496
+ double tempPayOff = european_payoff(( *( Xs_array + legIndex_dash ) ), sim_dash[NL-1], cp_sign, dir_sign, 1);
497
+ if(tempPayOff == 0){
498
+ itm = false;
499
+ }
500
+ }
501
+ if (itm){
502
+ sim_dash_pos[legIndex_dash] = get_equivalent_rebate(rebate_conversion_sign, ( *( Rebate_array + 0 ) ), sim_dash[legIndex_dash], dir_sign);
503
+ }
504
+ }
505
+ if ((point_pos < DATAPOINTS) && (sim_count % INTERVAL) == 0){
506
+ metrics[0][point_pos] = sim[NL-1];
507
+ metrics[1][point_pos] = *( Xs_array + 0 );
508
+ metrics[0][point_pos+1] = sim_dash[NL-1];
509
+ metrics[1][point_pos+1] = *( Xs_array + 0 );
510
+ }
511
+ } else if(KType == FX_AMERICAN_BARRIER_BINARY_OUT_DISCRETE || KType == FX_AMERICAN_BARRIER_BINARY_CALLPUT_OUT_DISCRETE){
512
+ if(knockedLeg == -1){
513
+ int itm = true;
514
+ if (CP <= 1){
515
+ double tempPayOff = european_payoff(( *( Xs_array + 0 ) ), sim[NL-1], cp_sign, dir_sign, 1);
516
+ if(tempPayOff == 0){
517
+ itm = false;
518
+ }
519
+ }
520
+ if (itm){
521
+ sim_pos[NL - 1] = get_equivalent_rebate(rebate_conversion_sign, ( *( Rebate_array + 0 ) ), sim[NL - 1], dir_sign);
522
+ }
523
+ }
524
+
525
+ if(knockedLeg_dash == -1){
526
+ int itm = true;
527
+ if (CP <= 1){
528
+ double tempPayOff = european_payoff(( *( Xs_array + 0 ) ), sim_dash[NL-1], cp_sign, dir_sign, 1);
529
+ if(tempPayOff == 0){
530
+ itm = false;
531
+ }
532
+ }
533
+ if (itm){
534
+ sim_dash_pos[NL - 1] = get_equivalent_rebate(rebate_conversion_sign, ( *( Rebate_array + 0 ) ), sim_dash[NL - 1], dir_sign);
535
+ }
536
+ }
537
+ if ((point_pos < DATAPOINTS) && (sim_count % INTERVAL) == 0){
538
+ metrics[0][point_pos] = sim[NL-1];
539
+ metrics[1][point_pos] = *( Xs_array + 0 );
540
+ metrics[0][point_pos+1] = sim_dash[NL-1];
541
+ metrics[1][point_pos+1] = *( Xs_array + 0 );
542
+ }
543
+ } else if(KType == FX_AMERICAN_BARRIER_KIKO_UNTIL_EXP){
544
+ if(knockedLeg2 >= 0){
545
+ sim_pos[NL-1] = get_equivalent_rebate(rebate_conversion_sign, ( *( Rebate_array + 0 ) ), sim[NL-1], dir_sign);
546
+ } else if(knockedLeg >= 0) {
547
+ double equivalent_notional = get_equivalent_notional(conversion_sign, ( *( Ns_array + knockedLeg ) ), sim[NL-1]);
548
+ sim_pos[NL-1] = european_payoff(( *( Xs_array + (knockedLeg) ) ), sim[NL-1], cp_sign, dir_sign, equivalent_notional);
549
+ }
550
+ if(knockedLeg2_dash >= 0){
551
+ sim_dash_pos[NL-1] = get_equivalent_rebate(rebate_conversion_sign, ( *( Rebate_array + 0 ) ), sim_dash[NL-1], dir_sign);
552
+ } else if(knockedLeg_dash >= 0) {
553
+ double equivalent_notional = get_equivalent_notional(conversion_sign, ( *( Ns_array + knockedLeg_dash ) ), sim_dash[NL-1]);
554
+ sim_dash_pos[NL-1] = european_payoff(( *( Xs_array + (knockedLeg_dash) ) ), sim_dash[NL-1], cp_sign, dir_sign, equivalent_notional);
555
+ }
556
+
557
+ if ((point_pos < DATAPOINTS) && (sim_count % INTERVAL) == 0){
558
+ metrics[0][point_pos] = sim[NL-1];
559
+ metrics[1][point_pos] = (knockedLeg >= 0) ? ( *( Xs_array + (knockedLeg) ) ) : 0;
560
+ metrics[3][point_pos] = knockedLeg;
561
+ metrics[0][point_pos+1] = sim_dash[NL-1];
562
+ metrics[1][point_pos+1] = (knockedLeg_dash >= 0) ? ( *( Xs_array + (knockedLeg_dash) ) ) : 0;
563
+ metrics[3][point_pos+1] = knockedLeg_dash;
564
+ }
565
+ } else if(KType == FX_AMERICAN_BARRIER_KIKO_UNTIL_KI){
566
+ if(knockedLeg >= 0 && knockedLeg2 >= 0){
567
+ if(knockedLeg < knockedLeg2){
568
+ double equivalent_notional = get_equivalent_notional(conversion_sign, ( *( Ns_array + knockedLeg ) ), sim[NL-1]);
569
+ sim_pos[NL-1] = european_payoff(( *( Xs_array + (knockedLeg) ) ), sim[NL-1], cp_sign, dir_sign, equivalent_notional);
570
+ } else {
571
+ sim_pos[knockedLeg2] = get_equivalent_rebate(rebate_conversion_sign, ( *( Rebate_array + 0 ) ), sim[knockedLeg2], dir_sign);
572
+ }
573
+ } else if(knockedLeg2 >= 0){
574
+ sim_pos[knockedLeg2] = get_equivalent_rebate(rebate_conversion_sign, ( *( Rebate_array + 0 ) ), sim[knockedLeg2], dir_sign);
575
+ } else if(knockedLeg >= 0) {
576
+ double equivalent_notional = get_equivalent_notional(conversion_sign, ( *( Ns_array + knockedLeg ) ), sim[NL-1]);
577
+ sim_pos[NL-1] = european_payoff(( *( Xs_array + (knockedLeg) ) ), sim[NL-1], cp_sign, dir_sign, equivalent_notional);
578
+ }
579
+
580
+ if(knockedLeg_dash >= 0 && knockedLeg2_dash >= 0){
581
+ if(knockedLeg_dash < knockedLeg2_dash){
582
+ double equivalent_notional = get_equivalent_notional(conversion_sign, ( *( Ns_array + knockedLeg_dash ) ), sim_dash[NL-1]);
583
+ sim_dash_pos[NL-1] = european_payoff(( *( Xs_array + (knockedLeg_dash) ) ), sim_dash[NL-1], cp_sign, dir_sign, equivalent_notional);
584
+ } else {
585
+ sim_dash_pos[knockedLeg2_dash] = get_equivalent_rebate(rebate_conversion_sign, ( *( Rebate_array + 0 ) ), sim_dash[knockedLeg2_dash], dir_sign);
586
+ }
587
+ } else if(knockedLeg2_dash >= 0){
588
+ sim_dash_pos[knockedLeg2_dash] = get_equivalent_rebate(rebate_conversion_sign, ( *( Rebate_array + 0 ) ), sim_dash[knockedLeg2_dash], dir_sign);
589
+ } else if(knockedLeg_dash >= 0) {
590
+ double equivalent_notional = get_equivalent_notional(conversion_sign, ( *( Ns_array + knockedLeg_dash ) ), sim_dash[NL-1]);
591
+ sim_dash_pos[NL-1] = european_payoff(( *( Xs_array + (knockedLeg_dash) ) ), sim_dash[NL-1], cp_sign, dir_sign, equivalent_notional);
592
+ }
593
+
441
594
  if ((point_pos < DATAPOINTS) && (sim_count % INTERVAL) == 0){
442
595
  metrics[0][point_pos] = sim[NL-1];
443
596
  metrics[1][point_pos] = (knockedLeg >= 0) ? ( *( Xs_array + (knockedLeg) ) ) : 0;
@@ -3,5 +3,5 @@
3
3
  # gem yank tarf_monte_carlo -v 2.3
4
4
 
5
5
  module TarfMonteCarlo
6
- VERSION = "3.53"
6
+ VERSION = "3.58"
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tarf_monte_carlo
3
3
  version: !ruby/object:Gem::Version
4
- version: '3.53'
4
+ version: '3.58'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vivek Routh
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-10-08 00:00:00.000000000 Z
11
+ date: 2020-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler