-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathws.js
53 lines (52 loc) · 1.44 KB
/
ws.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
var axios = require('axios');
var WebSocketServer = require('ws').Server,
wss = new WebSocketServer({port: 40510})
wss.on('connection', function (ws) {
ws.on('message', function (message) {
console.log('received: %s', message)
var arr = [];
var createdDate;
axios.get('https://www.quandl.com/api/v3/datasets/NSE/'+message+'.json?api_key=MX4zkypoSjUzp8CyotQg')
.then(function (response) {
arr.push(message);
var data = response.data.dataset.data;
var openarr = [],higharr = [],lowarr = [],lastarr = [],closearr =[] ,ttqarr = [],turnoverarr = [],dates = [];
data.forEach(function(element) {
dates.push(element[0]);
openarr.push(element[1]);
higharr.push(element[2]);
lowarr.push(element[3]);
lastarr.push(element[4]);
closearr.push(element[5]);
ttqarr.push(element[6]);
turnoverarr.push(element[7]);
});
var tickers =response.data.dataset.dataset_code;
if(arr.filter(i => i === message).length==1)
createdDate = Date.now();
var updatedDate = Date.now();
var obj = {
ticker:tickers,
priceHistory:{
Dates:dates,
Open:openarr,
High:higharr,
Low:lowarr,
Last:lastarr,
Close:closearr,
TTQ:ttqarr,
Turnover:turnoverarr
},
createdDate:createdDate,
updatedDate:updatedDate
}
return obj;
})
.then(function (obj) {
ws.send(JSON.stringify(obj));
})
.catch(function (error) {
console.log(error);
})
})
});