cryptum 0.0.435 → 0.0.436
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/.rubocop.yml +1 -1
- data/lib/cryptum/event/history.rb +2 -0
- data/lib/cryptum/ui/order/execute.rb +10 -6
- 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: 78e5097bce59e7bd90fc84a90b797160708198257a80873063394f3df043ead3
|
4
|
+
data.tar.gz: 138a10078e544af2ffc8627378986b2f9df06c7f360c45830385e12550ebab92
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25a3d7bc40279ba899dc69e920aed71c0c2bb3687b466135ede510d96afac45fce58553483a9e143cf878f2a66e4ed93b8ba941dde0dd5cfa5e8e7751ef837d0
|
7
|
+
data.tar.gz: 6610510ac42fce2aa362eb8447881154eb185169815c82de718dfd34f1e2474d50b59cb71ad09d70427c388112ec2c73bc778131e85ed93deb55195493c77f9a
|
data/.rubocop.yml
CHANGED
@@ -11,6 +11,7 @@ module Cryptum
|
|
11
11
|
:event_type,
|
12
12
|
:first_event,
|
13
13
|
:highest_selling_price,
|
14
|
+
:last_purchase_price,
|
14
15
|
:lowest_selling_price,
|
15
16
|
:market_trend_event,
|
16
17
|
:open_sell_orders,
|
@@ -52,6 +53,7 @@ module Cryptum
|
|
52
53
|
self.bullish_trend = true
|
53
54
|
self.first_event = true
|
54
55
|
self.highest_selling_price = 0.00
|
56
|
+
self.last_purchase_price = 0.00
|
55
57
|
self.lowest_selling_price = 0.00
|
56
58
|
self.open_sell_orders = 0
|
57
59
|
self.open_sell_orders_max = 500
|
@@ -84,11 +84,14 @@ module Cryptum
|
|
84
84
|
|
85
85
|
this_order = event_history.order_book[:order_plan].first
|
86
86
|
|
87
|
-
# If price is greater than the lowest selling
|
88
|
-
# force it to be slightly less
|
89
|
-
|
87
|
+
# If price is greater than the lowest selling
|
88
|
+
# limit order, force it to be slightly less
|
89
|
+
last_order = order_history_meta.reverse.find { |o| o[:color] == 'yellow' }
|
90
|
+
# lowest_selling_price = event_history.lowest_selling_price
|
91
|
+
last_purchase_price = event_history.last_purchase_price
|
92
|
+
event_history.last_purchase_price = last_order[:price].to_f if last_order
|
90
93
|
|
91
|
-
limit_price =
|
94
|
+
limit_price = last_purchase_price - quote_increment.to_f if last_purchase_price.positive? && last_purchase_price < limit_price
|
92
95
|
|
93
96
|
price = format(
|
94
97
|
"%0.#{fiat_smallest_decimal}f",
|
@@ -98,8 +101,9 @@ module Cryptum
|
|
98
101
|
# Debug last order -------------------------------#
|
99
102
|
# TODO: if the order attempt is unsucessful at the adjusted price,
|
100
103
|
# the order plan needs to be reset.
|
101
|
-
debug_last_order = "
|
102
|
-
debug_last_order += "
|
104
|
+
debug_last_order = "Last Order: #{last_order}\n"
|
105
|
+
debug_last_order += "Last Purchase Price: #{last_purchase_price}\n"
|
106
|
+
debug_last_order += "Limit Price (Should be <= #{last_purchase_price}): #{price}"
|
103
107
|
debug_last_order += "\n\n\n"
|
104
108
|
|
105
109
|
Cryptum::Log.append(
|
data/lib/cryptum/version.rb
CHANGED