tarf_monte_carlo 3.15 → 3.15.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0f33686b3c3246f31356eb1f1cc2161bb1a23a87f305b4a34e370d6c59584180
4
- data.tar.gz: 3576f3fdb01ab53522ee92926d7536994551cc97503a9497c894b904c06582aa
3
+ metadata.gz: c46dcadc23792b6ddc2ecf64ddd7c9fd3ff8f2d0e63ff724980d9b4e035ef7ba
4
+ data.tar.gz: 4c9758d8596cb11ccb4d341b74eae1d89e8f375b4bde8d37f2307fa919d1bac2
5
5
  SHA512:
6
- metadata.gz: 27375bd106d3365323189a6d00ab4398b2d6d94d32fa82ed6ea69dc4d1f050a78d333ce4a694f8fd0a722f5c380b4e76ff946269b6b8cd5f29a02243120cf2d9
7
- data.tar.gz: 5465e552c843af156e62bccbd1dbe34779c1f9e06f6596b2f142a817c4465299d635a8a1e8e4be0576e64ceae3f4017613209984aed02a2c0e4a2071425b9356
6
+ metadata.gz: 52b46220de4844bcacaeca2be8828123e62c55c2f0a8209ea7e30558f31be31a996ecda344548b81a7a8861e08b5ece70de3dbf59564ee62d5af4ae509d72d24
7
+ data.tar.gz: 7bdb222b49e64f948b28277ddb45782f8023f1b9ac6afc235f2802f24e4c268bb67ec75ffadfc366f779e3cdc6bafb9cd0a19f03af71136e2386a0b40259e339
@@ -196,7 +196,7 @@ VALUE method_run_monte_carlo( VALUE self, VALUE args ) {
196
196
  } else if(Spot >= *( LSts_array + leg ) && (Spot < *(Ps_array + leg))) {
197
197
  profit_loss = (*( LSts_array + leg )) - Spot;
198
198
  } else {
199
- profit_loss = Spot - (*( USts_array + leg ))
199
+ profit_loss = Spot - (*( USts_array + leg ));
200
200
  }
201
201
  // dash
202
202
  if ( Spot_dash < *( LSts_array + leg ) ) {
@@ -206,7 +206,7 @@ VALUE method_run_monte_carlo( VALUE self, VALUE args ) {
206
206
  } else if(Spot_dash >= *( LSts_array + leg ) && (Spot_dash < *(Ps_array + leg))) {
207
207
  profit_loss_dash = (*( LSts_array + leg )) - Spot_dash;
208
208
  } else {
209
- profit_loss_dash = Spot_dash - (*( USts_array + leg ))
209
+ profit_loss_dash = Spot_dash - (*( USts_array + leg ));
210
210
  }
211
211
  }
212
212
  else if ( BS == BUY ) {
@@ -1,7 +1,7 @@
1
1
  # gem build tarf_monte_carlo.gemspec
2
- # gem push -v tarf_monte_carlo-3.15.gem
2
+ # gem push -v tarf_monte_carlo-3.15.1.gem
3
3
  # gem yank tarf_monte_carlo -v 2.3
4
4
 
5
5
  module TarfMonteCarlo
6
- VERSION = "3.15"
6
+ VERSION = "3.15.1"
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tarf_monte_carlo
3
3
  version: !ruby/object:Gem::Version
4
- version: '3.15'
4
+ version: 3.15.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vivek Routh