This repository has been archived by the owner on Jul 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
.sample_env
99 lines (85 loc) · 1.73 KB
/
.sample_env
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#
################## Appliaction Database
#
# low performance database
#
MYSQL_HOST=
MYSQL_PORT=3306
MYSQL_USER=
MYSQL_PASS=
MYSQL_DB=
#
################## Exchange Database
# Storage of exhcange datas / high performance database
#
MYSQL_HOST_EXCHANGE=
MYSQL_PORT_EXCHANGE=3306
MYSQL_USER_EXCHANGE=
MYSQL_PASS_EXCHANGE=
MYSQL_DB_EXCHANGE=
#
################## Redis Database
# Redis can be used to increase reliability and reduce latency between services
#
REDIS_HOST =
REDIS_PORT = 6379
REDIS_AUTH =
REDIS_DB_ID = 0
#
################## Snapshot Heartbeat
#
# Time (ms), between snapshot Candlestick,Orderbook
# Recommended: 60000 (1 minute)
#
snapshotHeartbeat = 60000
ORDERBOOK_SIZE_LIMIT = 1024
# Loglevel verbose,info
logLevel = info
DEBUG_WORKER=false
#
################## Functions
#
# On/Off (1 = On, 0 = Off)
MarketData = 1
Sentiment = 1
Livefeed = 1
PriceTicker = 1
Warden = 1
#
################## Exchanges
#
# List of supportable exchanges with "," separated, read CCTX for supported exhcange list
exchangeList = binance,kucoin
#
################# Warden settings
#
# Auto init tradepairs for data collection based on Volume desc, Quote and Quote limits should be match
# Example:
# quotes = BTC,ETH,USDT,BNB
# quoteLimits = 3,1,1,1
#
wardenExchangesList = binance,kucoin
quotes = BTC,ETH,USDT,BNB
quoteLimits = 3,1,1,1
#
################# Reddit API
#
#
reddit_clientId =
reddit_clientSecret =
reddit_username =
reddit_password =
# Reddit api loop timeout, avoid rate limit! (in sec) (Recommend: 450)
#
reddit_update_timeout = 900
#
################# Twitter API
#
#
consumerKey =
consumerSecret =
accessToken =
accessTokenSecret =
# Twitter api loop timeout, avoid rate limit! (in sec) (Recommend: 450)
#
twitter_update_timeout = 450