-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathconfig.js
44 lines (40 loc) · 1.35 KB
/
config.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
module.exports = {
BOT_TOKEN: process.env.BOT_TOKEN,
// PARSE_EMODE: "",
CHAT_ID: process.env.CHAT_ID,
TESTING: (process.env.TESTING === 'true'), // Ignore, unless you want to send alerts to a seperate channel while testing, set this to true
TEST_CHAT_ID: (process.env.TEST_CHAT_ID?process.env.TEST_CHAT_ID:""), // Used when "TESTING" is set to true.
/**
* These are only names of existing exchanges.
*
* Just adding the name will not add the exchange to the subscriptions.
* If you add an exchange here, you also have to implement it. :)
*/
exchanges: {
"binance": true,
"bitfinex": true,
"coinbase": true
},
currencies: [
"BTCUSD", "ETHUSD", "EOSUSD", "LTCUSD", // USD Comparative (use USD even for USDT)
"ETHBTC", "EOSBTC", "LTCBTC", // BTC Comparative
],
trade: {
alerts: true,
min_worth: { // Used while migrating alert limits to the database
default: 70000, // Default value for when specific value is not specified below
BTC: 100000,
LTC: 45000 ,
ETH: 65000,
EOS: 60000
}
},
order: {
alerts: true,
min_worth: { // Used while migrating alert limits to the database
default: 700000, // Default value for when specific value is not specified below
BTC: 1000000,
LTC: 500000
}
}
}