-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.env.example
34 lines (25 loc) · 1.07 KB
/
.env.example
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
KRAKEN_CLIENT_KEY=
KRAKEN_CLIENT_SECRET=
# Enable back-testing, to test for across entire datasets
# BOT_BACKTEST=1
# Ouput logs to console (default `1` for enabled)
# BOT_LOG_STDOUT=0
# Append to the current log file (todays date)
BOT_LOG_FILE=1
# Toggle verbose logging (dataset merges, variable dumps, etc)
# BOT_VERBOSE=1
# Store a copy of any datasets retrieved from exchanges
# Disabled to stop copies of test dataset from being saved in duplicate
BOT_EXCHANGE_STORE_DATASET=0
# Explictly disable dry-run (set to 0), otherwise defaults to 1 (paper trading)
BOT_DRYRUN=1
# Allow `Bot.setItem` to overwrite, if an item already exists with the same `name` value.
# Default value is `0`, which is to only overwrite items with the same `uuid`
BOT_ITEM_NAME_OVERWRITE=0
# Determine chart syncing, during timeframe execution. You may decide to
# disable this feature, when backtesting, etc.
# Default value is `1`
BOT_TIMEFRAME_CHART_SYNC=0
# Default (50) number of candles to be requested from exchanges, if all other dataset
# sync checks fail.
# BOT_CHART_DEFAULT_TOTAL_CANDLE=50