blob: e0c706e7bda08a9230ac5e53d5c0881040b66d54 (
plain)
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
|
var http = require('http');
var slurp = require('./slurp');
var options = {
host: 'scexchange.bitparking.com',
port: 8080,
path: '/api/t2'
};
var last_id = 0;
var last_price = 0;
function t2 () {
http.get(options, function(res) {
slurp(res, function (data) {
try {
data = JSON.parse(data);
} catch (exn) {
return console.error('[1;31m' + exn.stack + '[m');
};
data
.sort(function (a, b) {
return a.id - b.id;
})
.forEach(function (x) {
if (x.id > last_id) {
last_id = x.id;
x.date = new Date(Number(x.date) * 1000);
var price = x.price.toString();
while (price.length < 'x.xxxxxxxx'.length) {
price += 0;
}
if (x.price > last_price) {
price = '[32m' + price + '[m'
}
if (x.price < last_price) {
price = '[31m' + price + '[m'
}
last_price = x.price;
var c = ({ buy: '[32m', sell: '[31m' })[x.type];
var m = '';
m += x.id
m += ' ' + JSON.parse(JSON.stringify(x.date))
m += ' ' + price
m += ' ' + c + x.amount + '[m'
console.log(m);
};
});
});
}).on('error', function(e) {
console.log("Got error: " + e.message);
});
};
setInterval(t2, 1000);
|