cryptum 0.0.436 → 0.0.437
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 +4 -4
- data/lib/cryptum/ui/order/execute.rb +1 -1
- data/lib/cryptum/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c52559a0fe9d90cb03287578b9f91831b1dab36fdf53fc27da19872bdfdcfad1
|
4
|
+
data.tar.gz: adc165e7481a2feb7388c2ad62fc83fcd2f63909e2f14cf3d7eee2fcf3aed5e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 79c8982aa42b247eb98d74379f29f9f772281724a67f82db957451f9c3dd3c11ded0c196c52ff18ae7c9d9bd8eafdc14d5e306adb573d7dafd536288d701f9cc
|
7
|
+
data.tar.gz: e505dfa66f8aa2690c4bdb509ecd4d09b1783d2da6f9c11114ec2587e31fdfe94ac808314ea1de473e33cd6520a5e710cf578426576f1110fa31d3a185901bbc
|
@@ -88,8 +88,8 @@ module Cryptum
|
|
88
88
|
# limit order, force it to be slightly less
|
89
89
|
last_order = order_history_meta.reverse.find { |o| o[:color] == 'yellow' }
|
90
90
|
# lowest_selling_price = event_history.lowest_selling_price
|
91
|
-
last_purchase_price = event_history.last_purchase_price
|
92
91
|
event_history.last_purchase_price = last_order[:price].to_f if last_order
|
92
|
+
last_purchase_price = event_history.last_purchase_price
|
93
93
|
|
94
94
|
limit_price = last_purchase_price - quote_increment.to_f if last_purchase_price.positive? && last_purchase_price < limit_price
|
95
95
|
|
data/lib/cryptum/version.rb
CHANGED