-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBittrex_unsigned.lua
239 lines (195 loc) · 7.1 KB
/
Bittrex_unsigned.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
-- Inofficial Bittrex Extension (www.bittrex.com) for MoneyMoney
-- Fetches balances from Bittrex API and returns them as securities
--
-- Username: Bittrex API Key
-- Password: Bittrex API Secret
--
-- Copyright (c) 2017 Jonathan Schubert
--
-- Permission is hereby granted, free of charge, to any person obtaining a copy
-- of this software and associated documentation files (the "Software"), to deal
-- in the Software without restriction, including without limitation the rights
-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-- copies of the Software, and to permit persons to whom the Software is
-- furnished to do so, subject to the following conditions:
--
-- The above copyright notice and this permission notice shall be included in all
-- copies or substantial portions of the Software.
--
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-- SOFTWARE.
WebBanking {
version = 1.4,
url = "https://api.bittrex.com",
description = "Fetch balances from Bittrex API and list them as securities",
services = { "Bittrex Account" },
}
local apiKey
local apiSecret
local currency
local apiUrlVersion = "v3"
local market = "Bittrex"
local accountNumber = "Main"
function SupportsBank(protocol, bankCode)
return protocol == ProtocolWebBanking and bankCode == "Bittrex Account"
end
function InitializeSession(protocol, bankCode, username, username2, password, username3)
apiKey = username
apiSecret = password
currency = "EUR"
end
function ListAccounts(knownAccounts)
local account = {
name = market,
accountNumber = accountNumber,
currency = currency,
portfolio = true,
type = "AccountTypePortfolio"
}
return {account}
end
function RefreshAccount(account, since)
local s = {}
local price_btc_eur
-- Retrieve BTC price in EUR
-- price_btc_eur = queryPublic_cmc('ticker/bitcoin/', '?convert=EUR')[1]['price_eur']
price_btc_eur = queryPublic_bci('tobtc', '?currency=EUR&value=1000')
price_btc_eur = 1 / price_btc_eur * 1000
print("Price BTC/EUR:", price_btc_eur)
local balances = queryPrivate_bittrex_balances()
for key, value in pairs(balances) do
local amount_btc
local amount_eur
local price = 1
local status = true
local currency = value["currencySymbol"]
local balance = value["total"]
if currency == "BTC" then
amount_btc = balance
elseif currency == "USDT" then
price = queryPublic_bittrex("markets/", "BTC-USDT/ticker")['lastTradeRate']
amount_btc = balance / price
elseif currency == "USD" then
price = queryPublic_bittrex("markets/", "BTC-USD/ticker")['lastTradeRate']
amount_btc = balance / price
elseif currency == "BTXCRD" then
print('Error 3: Bittrex Credits not supported', currency)
status = false
price = 1
amount_btc = price * balance
else
repl = queryPublic_bittrex("markets/", currency .. "-BTC/ticker") or nil
if repl == nil then
print('Error 1: No price available on market for', currency)
status = false
else
price = repl['lastTradeRate']
end
if price == nil then
print('Error 2: No price available on market for', currency)
status = false
price = 1
end
amount_btc = price * balance
end
amount_eur = amount_btc * price_btc_eur
-- print(currency, balance)
-- print(' ', 'price', price)
-- print(' ', 'amount_btc', amount_btc)
-- print(' ', 'amount_eur', amount_eur)
if status then
s[#s+1] = {
name = currency,
market = market,
currency = nil,
amount = amount_eur,
quantity = balance,
price = price * price_btc_eur
}
else
s[#s+1] = {
name = currency,
market = market,
currency = nil,
amount = nil,
quantity = nil,
price = nil
}
end
end
return {securities = s}
end
function EndSession()
end
function bin2hex(s)
return (s:gsub(".", function (byte)
return string.format("%02x", string.byte(byte))
end))
end
function queryPrivate_bittrex_balances()
local endpoint = "balances"
local path = string.format("/%s/%s", apiUrlVersion, endpoint)
local method = "GET"
local nonce = string.format("%d", MM.time()*1000)
local content = ""
local contentHash = MM.sha512(content)
contentHash = string.lower(contentHash)
local preSign = nonce .. url .. path .. method .. contentHash
local apiSign = MM.hmac512(apiSecret, preSign)
apiSign = bin2hex(apiSign)
local headers = {}
headers["Api-Key"] = apiKey
headers["Api-Timestamp"] = string.format("%s", nonce)
headers["Api-Content-Hash"] = contentHash
headers["Api-Signature"] = apiSign
headers["Accept"] = "application/json"
-- print("------------------------------")
-- print("Nonce:", nonce)
-- print("contentHash:", contentHash)
-- print("preSign:", preSign)
-- print("apiSign:", apiSign)
-- print("------------------------------")
-- print("headers[Api-Key]:", headers["Api-Key"])
-- print("headers[Api-Timestamp]:", headers["Api-Timestamp"])
-- print("headers[Api-Content-Hash]:", headers["Api-Content-Hash"])
-- print("headers[Api-Signature]:", headers["Api-Signature"])
-- print("headers[Accept]:", headers["Accept"])
-- print("------------------------------")
connection = Connection()
content = connection:request(method, url .. path, nil, nil, headers)
json = JSON(content)
-- for key, value in pairs(json:dictionary()) do
-- print(key, value["currencySymbol"], value["total"])
-- end
return json:dictionary()
end
function queryPublic_bittrex(method, query)
local path = string.format("/%s/%s", apiUrlVersion, method)
local headers = {}
headers["Accept"] = "application/json"
connection = Connection()
content = connection:request("GET", url .. path .. query, nil, nil, headers)
json = JSON(content)
return json:dictionary()
end
function queryPublic_cmc(method, query)
local url = 'https://api.coinmarketcap.com'
local path = string.format("/v1/%s", method)
connection = Connection()
content = connection:request("GET", url .. path .. query)
json = JSON(content)
return json:dictionary()
end
function queryPublic_bci(method, query)
local url = 'https://blockchain.info'
local path = string.format("/%s", method)
connection = Connection()
content = connection:request("GET", url .. path .. query)
json = JSON(content)
return json:dictionary()
end