-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.js
65 lines (56 loc) · 1.97 KB
/
example.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
const WhalefinRest = require('whalefin-api-rest');
(async () => {
//test
const whalefin = new WhalefinRest({
key: 'your_key',
secret: 'your_secret',
production: false //false for test node, true for production node
});
const asset = await whalefin.request({
method: 'GET',
path: '/api/v2/asset/balance'
});
console.log('asset', asset);
let usdvalue_total = parseFloat(asset.result.totalAvailableBalanceInUSD);
for (const detail of asset.result.balanceDetails) {
usdvalue_total += parseFloat(detail.dualCurrencyLockedAmount) * parseFloat(detail.priceInUSD);
}
console.log('usdvalue_total', usdvalue_total);
const price = await whalefin.request({
method: 'GET',
path: '/api/v2/trade/rfq',
data: {'quantity':'3',
'direction': 'SELL',
'symbol': 'BTC_USD'}
});
console.log('price', price);
const swapprice = await whalefin.request({
method: 'GET',
path: '/api/v2/trade/swap/price',
data: {'quantity':'3',
'toCurrency': 'USD',
'fromCurrency': 'BTC'}
});
console.log('swapprice', swapprice);
const spotorder = await whalefin.request({
method: 'POST',
path: '/api/v2/trade/orders/spot',
data: {'direction':'BUY',
'price': '10500',
'strategy': 'GTC',
'type':'LIMIT',
//'type':'MARKET',
'symbol':'BTC_USD',
'quantity':'0.1'}
});
console.log('spotorder', spotorder);
console.log('orderId', spotorder.result.id);
const cancelorder = await whalefin.request({
method: 'PUT',
path: '/api/v2/trade/orders/cancel',
data: {'category':'SPOT',
'orderId': spotorder.result.id
}
});
console.log('cancelorder', cancelorder);
})().then();