-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathData.js
69 lines (48 loc) · 1.32 KB
/
Data.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
var ccxt = require('ccxt');
require('dotenv').config();
// Instantiate exchange object. Can pass headers with extra information
const ftx = new ccxt.ftx({
"apiKey": process.env.SUB_ACC_KEY,
"secret":process.env.SUB_ACC_SECRET,
"headers": {
'FTX-SUBACCOUNT': 'bot_test_subaccount'
}
})
async function getPrice(symbol, quote){
let orderBook = await ftx.fetchOrderBook(symbol);
return orderBook[quote][0][0];
}
// Returns the list of markets as an object indexed by symbol and caches it with the exchange instance
async function loadMarkets(){
return await ftx.loadMarkets();
}
// Fetches a list of all available markets from an exchange and returns
// an array of markets (objects with properties such as symbol, base, quote etc.).
async function getMarkets(){
return await ftx.fetchMarkets();
}
/**
*
* @NOTICE These funcitons require authentication
*
*/
// Fetch all orders in the account
async function getOrders(){
return await ftx.fetchOrders()
}
// Fetch all orders in the account
async function getOpenOrders(){
return await ftx.fetchOpenOrders()
}
// Get current account balance
async function getBalance(){
return await ftx.fetchBalance();
}
module.exports = {
getPrice,
getMarkets,
loadMarkets,
getOrders,
getOpenOrders,
getBalance
}