irix 2.4.2 → 2.4.3
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/Gemfile.lock +2 -2
- data/lib/irix/bitfinex.rb +126 -2
- data/lib/irix/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 66522df660b1ad84d6085e2c85ad9560b6caeca36964d302270bfdcbaba01a16
|
4
|
+
data.tar.gz: f1f81a8dd46e33d1fc118ad77df41afec7ba40bdc5f7fb9e79a35128b2adf5b2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 379e9c8f811ba1cf5ce927553551c3f52228217b2c064b475c3e772a2fe8d80b6d6bdc004a121660275094f0cc2fcd2f87d49eed1d9eb1e7b3149cab58d9ce6a
|
7
|
+
data.tar.gz: 6bdb2cda4714b4f14f813edd915bf921954b0c6379921a4ed943e82a9ce3f3e70abecd7121f1d05fef032ba26cad849bc4085864a5e3ea18421e969e24075b8a
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
irix (2.4.
|
4
|
+
irix (2.4.3)
|
5
5
|
em-synchrony (~> 1.0)
|
6
6
|
em-websocket
|
7
7
|
eventmachine
|
@@ -85,7 +85,7 @@ GEM
|
|
85
85
|
parallel (1.19.0)
|
86
86
|
parser (2.6.5.0)
|
87
87
|
ast (~> 2.4.0)
|
88
|
-
peatio (2.4.
|
88
|
+
peatio (2.4.3)
|
89
89
|
activemodel (> 5.2, <= 6.0.0)
|
90
90
|
amqp
|
91
91
|
bunny
|
data/lib/irix/bitfinex.rb
CHANGED
@@ -2,6 +2,15 @@
|
|
2
2
|
|
3
3
|
module Irix
|
4
4
|
class Bitfinex < Peatio::Upstream::Base
|
5
|
+
require 'time'
|
6
|
+
|
7
|
+
MIN_INCREMENT_COUNT_TO_SNAPSHOT = 100
|
8
|
+
MIN_PERIOD_TO_SNAPSHOT = 5
|
9
|
+
MAX_PERIOD_TO_SNAPSHOT = 60
|
10
|
+
|
11
|
+
attr_accessor :snap, :snapshot_time, :increment_count, :sequence_number,
|
12
|
+
:open_channels, :asks, :bids
|
13
|
+
|
5
14
|
def initialize(config)
|
6
15
|
super
|
7
16
|
@connection = Faraday.new(url: (config['rest']).to_s) do |builder|
|
@@ -12,15 +21,22 @@ module Irix
|
|
12
21
|
builder.ssl[:verify] = config['verify_ssl']
|
13
22
|
end
|
14
23
|
end
|
24
|
+
@open_channels = {}
|
15
25
|
@ping_set = false
|
16
26
|
@rest = (config['rest']).to_s
|
17
|
-
@ws_url =
|
27
|
+
@ws_url = (config['websocket']).to_s
|
18
28
|
end
|
19
29
|
|
20
30
|
def ws_connect
|
21
31
|
super
|
22
32
|
return if @ping_set
|
23
33
|
|
34
|
+
@ws.on(:open) do |_e|
|
35
|
+
subscribe_trades(@target, @ws)
|
36
|
+
subscribe_orderbook(@target, @ws)
|
37
|
+
logger.info { 'Websocket connected' }
|
38
|
+
end
|
39
|
+
|
24
40
|
Fiber.new do
|
25
41
|
EM::Synchrony.add_periodic_timer(80) do
|
26
42
|
@ws.send('{"event":"ping"}')
|
@@ -30,6 +46,8 @@ module Irix
|
|
30
46
|
end
|
31
47
|
|
32
48
|
def subscribe_trades(market, ws)
|
49
|
+
return unless @config['trade_proxy']
|
50
|
+
|
33
51
|
sub = {
|
34
52
|
event: 'subscribe',
|
35
53
|
channel: 'trades',
|
@@ -42,9 +60,40 @@ module Irix
|
|
42
60
|
end
|
43
61
|
end
|
44
62
|
|
63
|
+
def subscribe_orderbook(market, ws)
|
64
|
+
return unless @config['orderbook_proxy']
|
65
|
+
|
66
|
+
@sequence_number = 0
|
67
|
+
@increment_count = 0
|
68
|
+
@bids = []
|
69
|
+
@asks = []
|
70
|
+
@snap = { 'asks' => [], 'bids' => [] }
|
71
|
+
sub = {
|
72
|
+
event: 'subscribe',
|
73
|
+
channel: 'book',
|
74
|
+
symbol: market.upcase,
|
75
|
+
len: 25
|
76
|
+
}
|
77
|
+
Rails.logger.info 'Open event' + sub.to_s
|
78
|
+
EM.next_tick do
|
79
|
+
ws.send(JSON.generate(sub))
|
80
|
+
end
|
81
|
+
Fiber.new do
|
82
|
+
EM::Synchrony.add_periodic_timer(0.2) do
|
83
|
+
publish_increment
|
84
|
+
end
|
85
|
+
end.resume
|
86
|
+
end
|
87
|
+
|
45
88
|
def ws_read_public_message(msg)
|
46
89
|
if msg.is_a?(Array)
|
47
|
-
|
90
|
+
if msg[1] == 'hb'
|
91
|
+
@ws.send('{"event":"ping"}')
|
92
|
+
elsif @open_channels[msg[0]] == 'trades'
|
93
|
+
detect_trade(msg)
|
94
|
+
elsif @open_channels[msg[0]] == 'book'
|
95
|
+
detect_order(msg)
|
96
|
+
end
|
48
97
|
elsif msg.is_a?(Hash)
|
49
98
|
message_event(msg)
|
50
99
|
end
|
@@ -65,10 +114,85 @@ module Irix
|
|
65
114
|
end
|
66
115
|
end
|
67
116
|
|
117
|
+
# [
|
118
|
+
# CHANNEL_ID,
|
119
|
+
# [
|
120
|
+
# PRICE,
|
121
|
+
# COUNT,
|
122
|
+
# AMOUNT
|
123
|
+
# ]
|
124
|
+
# ]
|
125
|
+
def detect_order(msg)
|
126
|
+
if msg[1][0].is_a?(Array)
|
127
|
+
msg[1].each do |point|
|
128
|
+
if point[2] > 0
|
129
|
+
@snap['bids'] << [point[0].to_s, point[2].to_s]
|
130
|
+
else
|
131
|
+
@snap['asks'] << [point[0].to_s, point[2].abs.to_s]
|
132
|
+
end
|
133
|
+
end
|
134
|
+
publish_snapshot
|
135
|
+
else
|
136
|
+
if @increment_count < MIN_INCREMENT_COUNT_TO_SNAPSHOT && @snapshot_time <= Time.now - MAX_PERIOD_TO_SNAPSHOT
|
137
|
+
publish_snapshot
|
138
|
+
@increment_count = 0
|
139
|
+
elsif @increment_count >= MIN_INCREMENT_COUNT_TO_SNAPSHOT && @snapshot_time < Time.now - MIN_PERIOD_TO_SNAPSHOT
|
140
|
+
publish_snapshot
|
141
|
+
@increment_count = 0
|
142
|
+
end
|
143
|
+
|
144
|
+
fill_increment(msg[1])
|
145
|
+
end
|
146
|
+
end
|
147
|
+
|
148
|
+
def fill_increment(order)
|
149
|
+
side = order[2].positive? ? 'bid' : 'ask'
|
150
|
+
price = order[0].to_s
|
151
|
+
if order[1].zero?
|
152
|
+
amount = 0
|
153
|
+
@snap["#{side}s"].delete_if { |point| point[0] == price }
|
154
|
+
else
|
155
|
+
amount = order[2].abs.to_s
|
156
|
+
@snap["#{side}s"].delete_if { |point| point[0] == price }
|
157
|
+
@snap["#{side}s"] << [price.to_s, amount.to_s]
|
158
|
+
end
|
159
|
+
if side == 'bid'
|
160
|
+
@bids.delete_if { |point| point[0] == price }
|
161
|
+
@bids << [price.to_s, amount.to_s]
|
162
|
+
elsif side == 'ask'
|
163
|
+
@asks.delete_if { |point| point[0] == price }
|
164
|
+
@asks << [price.to_s, amount.to_s]
|
165
|
+
end
|
166
|
+
@increment_count += 1
|
167
|
+
end
|
168
|
+
|
169
|
+
def publish_increment
|
170
|
+
inc = {}
|
171
|
+
inc['bids'] = @bids.sort.reverse if @bids.present?
|
172
|
+
inc['asks'] = @asks.sort if @asks.present?
|
173
|
+
if inc.present?
|
174
|
+
@sequence_number += 1
|
175
|
+
@peatio_mq.enqueue_event('public', @market, 'ob-inc',
|
176
|
+
'bids' => inc['bids'], 'asks' => inc['asks'],
|
177
|
+
'sequence' => @sequence_number)
|
178
|
+
end
|
179
|
+
@bids = []
|
180
|
+
@asks = []
|
181
|
+
end
|
182
|
+
|
183
|
+
def publish_snapshot
|
184
|
+
@snapshot_time = Time.now
|
185
|
+
@peatio_mq.enqueue_event('public', @market, 'ob-snap',
|
186
|
+
'bids' => @snap['bids'].sort.reverse,
|
187
|
+
'asks' => @snap['asks'].sort,
|
188
|
+
'sequence' => @sequence_number)
|
189
|
+
end
|
190
|
+
|
68
191
|
def message_event(msg)
|
69
192
|
case msg['event']
|
70
193
|
when 'subscribed'
|
71
194
|
Rails.logger.info "Event: #{msg}"
|
195
|
+
@open_channels[msg['chanId']] = msg['channel']
|
72
196
|
when 'error'
|
73
197
|
Rails.logger.info "Event: #{msg} ignored"
|
74
198
|
end
|
data/lib/irix/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: irix
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.4.
|
4
|
+
version: 2.4.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Naichuk M.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-04-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: em-synchrony
|