-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yml
68 lines (50 loc) · 1.75 KB
/
config.yml
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
# These options apply to how the script will operate.
script_options:
# Switch between testnet and mainnet
# Setting this to False will use REAL funds, use at your own risk
TEST_MODE: True
LOG_TRADES: True
LOG_FILE: 'trades.txt'
# These options apply to the trading methods the script executes
trading_options:
# select what to pair the coins to and pull all coins paied with PAIR_WITH
PAIR_WITH: USDT
# Total ammount per trade
QUANTITY: 15
# List of pairs to exlcude
# by default we're excluding the most popular fiat pairs
FIATS:
- EURUSDT
- GBPUSDT
- JPYUSDT
- USDUSDT
- DOWN
- UP
# Maximum number of coints to hold
MAX_COINS: 7
# the amount of time in MINUTES to calculate the difference from the current price
TIME_DIFFERENCE: 2
# Numer of times to check for TP/SL during each TIME_DIFFERENCE Minimum 1
RECHECK_INTERVAL: 10
# the difference in % between the first and second checks for the price.
CHANGE_IN_PRICE: 10
# define in % when to sell a coin that's not making a profit
STOP_LOSS: 5
# define in % when to take profit on a profitable coin
TAKE_PROFIT: .8
# Use custom tickers.txt list for filtering pairs
CUSTOM_LIST: True
# Name of custom tickers list
TICKERS_LIST: 'tickers.txt'
# whether to use trailing stop loss or not; default is True
USE_TRAILING_STOP_LOSS: True
# when hit TAKE_PROFIT, move STOP_LOSS to TRAILING_STOP_LOSS percentage points below TAKE_PROFIT hence locking in profit
# when hit TAKE_PROFIT, move TAKE_PROFIT up by TRAILING_TAKE_PROFIT percentage points
TRAILING_STOP_LOSS: .4
TRAILING_TAKE_PROFIT: .1
# Trading fee in % per trade.
TRADING_FEE: .075
SIGNALLING_MODULES:
- pausebotmod
- signalsamplemod
- dad