forked from manu354/cryptocurrency-arbitrage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.js
277 lines (247 loc) · 10.1 KB
/
settings.js
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
//
// let boilerPlateMarket =
// {
// marketName: '',
// URL: '', //URL To Fetch API From.
// toBTCURL: false, //URL, if needed for an external bitcoin price api.
// last: function (data, coin_prices) { //Get the last price of coins in JSON data
// return new Promise(function (res, rej) {
// try {
// for (x in / of data) {
// price = ...;
// coin_prices[coinName][marketName] = price;
// }
// res(coin_prices);
// }
// catch (err) {
// rej(err);
// }
//
// })
// },
//
//
// }
let markets = [
// {
// marketName: 'cryptowatchAPI',
// URL: 'https://api.cryptowat.ch/markets/summaries', //URL To Fetch API From.
// toBTCURL: false, //URL, if needed for an external bitcoin price api.
//
// last: function (data, coin_prices, toBTCURL) { //Where to find the last price of coin in JSON data
// return new Promise(function (res, rej) {
// try {
// data = data.result;
// for (let key in data) {
// let marketPair = key.split(':');
// let market = marketPair[0], pair = marketPair[1];
// let indexOfBTC = pair.indexOf('btc');
// if (indexOfBTC > 0 && !pair.includes('future') && !market.includes('qryptos') && !market.includes('quoine') && !market.includes('poloniex')) {
// if(marketNames.indexOf(market) === -1 ){
// marketNames.push([[market], ['']]);
// console.log(marketNames);
// }
// let coin = pair.replace(/btc/i, '').toUpperCase();
// let price = data[key].price.last;
// if(price > 0) {
// if (!coin_prices[coin]) coin_prices[coin] = {};
// coin_prices[coin][market] = price;
//
// }
// }
// }
// res(coin_prices);
// }
// catch (err) {
// console.log(err);
// rej(err)
// }
// })
// }
//
// },
{
marketName: 'bittrex',
URL: 'https://bittrex.com/api/v1.1/public/getmarketsummaries',
toBTCURL: false,
pairURL : '',
last: function (data, coin_prices) { //Where to find the last price of coin in JSON data
return new Promise(function (res, rej) {
try {
for (let obj of data.result) {
if(obj["MarketName"].includes('BTC-')) {
let coinName = obj["MarketName"].replace("BTC-", '');
if (!coin_prices[coinName]) coin_prices[coinName] = {};
coin_prices[coinName].bittrex = obj.Last;
}
}
res(coin_prices);
}
catch (err) {
console.log(err);
rej(err);
}
})
},
},
{
marketName: 'btc38',
URL: 'http://api.btc38.com/v1/ticker.php?c=all&mk_type=cny',
toBTCURL: false,
pairURL : '',
last: function (data, coin_prices, toBTCURL) { //Where to find the last price of coin in JSON data
return new Promise(function (res, rej) {
let priceOfBTC = data.btc.ticker.last;
try {
for (let key in data) {
let coinName = key.toUpperCase();
let price = data[key]['ticker'].last;
if (!coin_prices[coinName]) coin_prices[coinName] = {};
coin_prices[coinName]["btc38"] = data[key]['ticker'].last / priceOfBTC;
}
res(coin_prices);
}
catch (err) {
console.log(err);
rej(err)
}
})
}
},
{
marketName: 'jubi',
URL: 'https://www.jubi.com/api/v1/allticker/', //URL To Fetch API From.
toBTCURL: false, //URL, if needed for an external bitcoin price api.
pairURL : '',
last: function (data, coin_prices, toBTCURL) { //Where to find the last price of coin in JSON data
return new Promise(function (res, rej) {
let priceOfBTC = data.btc.last;
console.log(priceOfBTC);
try {
for (let key in data) {
let coinName = key.toUpperCase();
let price = data[key].last;
if (!coin_prices[coinName]) coin_prices[coinName] = {};
coin_prices[coinName]["jubi"] = data[key].last / priceOfBTC;
}
res(coin_prices);
}
catch (err) {
console.log(err);
rej(err)
}
})
}
},
{
marketName: 'poloniex',
URL: 'https://poloniex.com/public?command=returnTicker',
toBTCURL: false,
pairURL : '',
last: function (data, coin_prices) { //Where to find the last price of coin in JSON data
return new Promise(function (res, rej) {
try {
for (var obj in data) {
if(obj.includes('BTC_')&&obj!=="BTC_EMC2") {
let coinName = obj.replace("BTC_", '');
if (!coin_prices[coinName]) coin_prices[coinName] = {};
coin_prices[coinName].poloniex = data[obj].last;
}
}
res(coin_prices);
}
catch (err) {
console.log(err);
rej(err);
}
})
},
},
{
marketName: 'cryptopia',
URL: 'https://www.cryptopia.co.nz/api/GetMarkets/BTC', //URL To Fetch API From.
toBTCURL: false, //URL, if needed for an external bitcoin price api.
pairURL : '',
last: function (data, coin_prices) { //Get the last price of coins in JSON data
return new Promise(function (res, rej) {
try {
for (let obj of data.Data) {
if(obj["Label"].includes('/BTC')) {
let coinName = obj["Label"].replace("/BTC", '');
if (!coin_prices[coinName]) coin_prices[coinName] = {};
coin_prices[coinName].cryptopia = obj.LastPrice;
}
}
res(coin_prices);
}
catch (err) {
console.log(err);
rej(err);
}
})
},
},
{
marketName: 'bleutrade',
URL: 'https://bleutrade.com/api/v2/public/getmarketsummaries', //URL To Fetch API From.
toBTCURL: false, //URL, if needed for an external bitcoin price api.
pairURL : '',
last: function (data, coin_prices) { //Get the last price of coins in JSON data
return new Promise(function (res, rej) {
try {
for (let obj of data.result) {
if(obj["MarketName"].includes('_BTC')) {
let coinName = obj["MarketName"].replace("_BTC", '');
if (!coin_prices[coinName]) coin_prices[coinName] = {};
coin_prices[coinName].bleutrade = obj.Last;
}
}
res(coin_prices);
}
catch (err) {
console.log(err);
rej(err);
}
})
},
},
{
marketName: 'kraken', // kraken has no one size fits all market summery so each pair has to be entered as param in GET - will need to add new coins as they are added to exchange
URL: 'https://api.kraken.com/0/public/Ticker?pair=DASHXBT,EOSXBT,GNOXBT,ETCXBT,ETHXBT,ICNXBT,LTCXBT,MLNXBT,REPXBT,XDGXBT,XLMXBT,XMRXBT,XRPXBT,ZECXBT', //URL To Fetch API From.
toBTCURL: false, //URL, if needed for an external bitcoin price api.
pairURL : '',
last: function (data, coin_prices) { //Get the last price of coins in JSON data
return new Promise(function (res, rej) {
try {
for (let key in data.result) {
let arr = key.match(/DASH|EOS|GNO|ETC|ETH|ICN|LTC|MLN|REP|XDG|XLM|XMR|XRP|ZEC/); // matching real names to weird kraken api coin pairs like "XETCXXBT" etc
let name = key;
let matchedName = arr[0];
if (matchedName === "XDG") { //kraken calls DOGE "XDG" for whatever reason
let matchedName = "DOGE";
var coinName = matchedName;
} else {
var coinName = matchedName;
}
if (!coin_prices[coinName]) coin_prices[coinName] = {};
coin_prices[coinName].kraken = data.result[name].c[0];
}
res(coin_prices);
}
catch (err) {
console.log(err);
rej(err);
}
})
},
},
];
let marketNames = [];
for(let i = 0; i < markets.length; i++) { // Loop except cryptowatch
marketNames.push([[markets[i].marketName], [markets[i].pairURL]]);
}
console.log("Markets:", marketNames);
module.exports = function () {
this.markets = markets;
this.marketNames = marketNames;
};