-
Notifications
You must be signed in to change notification settings - Fork 382
/
app.json
49 lines (49 loc) · 1.78 KB
/
app.json
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
{
"name": "node-binance-trader",
"description": "Auto trader to trade signals from your BitcoinVsAltcoins.com strategy selection.",
"logo": "https://pbs.twimg.com/profile_images/1144199654831267841/SyDG8MA1_400x400.jpg",
"repository": "https://github.com/jsappme/node-binance-trader",
"keywords": ["node", "binance","trading","trader","bot","market","maker","algo","crypto"],
"env": {
"BINANCE_API_KEY": {
"description": "Your Binance API Key",
"required": true
},
"BINANCE_SECRET_KEY": {
"description": "Your Binance API Secret",
"required": true
},
"BVA_API_KEY": {
"description": "Your BitcoinVsAltcoins.com Account API Key",
"required": true
},
"IS_NOTIFIER_GMAIL_ENABLED": {
"description": "Selects if Gmail will be used",
"required": false
},
"IS_NOTIFIER_TELEGRAM_ENABLED": {
"description": "Selects if Telegram will be used",
"required": false
},
"IS_TRADE_MARGIN_ENABLED": {
"description": "Selects if short trades are enabled",
"required": false
},
"NOTIFIER_GMAIL_ADDRESS": {
"description": "Gmail email to get notifications",
"required": false
},
"NOTIFIER_GMAIL_APP_PASSWORD": {
"description": "Gmail password to get notifications",
"required": false
},
"NOTIFIER_TELEGRAM_API_KEY": {
"description": "Telegram Key for your bot (To create one follow https://core.telegram.org/bots#6-botfather )",
"required": false
},
"NOTIFIER_TELEGRAM_RECEIVER_ID": {
"description": "Unique identifier for the target chat or username of the target channel (in the format @channelusername)",
"required": false
}
}
}