This repository has been archived by the owner on Jun 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
config_custom_example_test.yml
88 lines (66 loc) · 2.9 KB
/
config_custom_example_test.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# These options apply to how the script will operate.
script_options:
# Setting TEST_MODE to False will use REAL funds, use at your own risk!
TEST_MODE: True
# Save trades to a log file.
# LOG_TRADES: True
# Specify the location of log file (default: trades.txt).
LOG_FILE: 'trades.txt'
# Set this to true if you are accessing binance from within the United States of America.
# Need to change TLD
AMERICAN_USER: False
# These options apply to the trading methods the script executes
trading_options:
# select your base currency to use for trading pairs (for example USDT, ETH, BTC)
PAIR_WITH: ETH
# Total amount per trade (your base currency balance must be at least TRADE_SLOTS * QUANTITY)
# Binance uses a minimum of 10 USDT per trade, add a bit extra to enable selling if the price drops.
# USDT - Recommended: no less than 12. Suggested: 15 or more.
# ETH - Recommended: no less than 0.006.
QUANTITY: 0.006
# List of trading pairs to exclude
# by default we're excluding the most popular fiat pairs
FIATS:
- EURUSDT
- GBPUSDT
- JPYUSDT
- USDUSDT
- DOWN
- UP
# Maximum number of trade 'slots' at any time (your USDT balance must be at least TRADE_SLOTS * QUANTITY)
TRADE_SLOTS: 67
# the amount of time in MINUTES to calculate the difference from the current price (minimum: 1).
TIME_DIFFERENCE: 5
# Number of times to check for TP/SL during each TIME_DIFFERENCE (minimum: 1).
# Don't spam the Binance API, you will be banned (max 1200 requests per minute per IP).
RECHECK_INTERVAL: 60
# the difference in % between the first and second checks for the price.
CHANGE_IN_PRICE: 1.5
# define in % when to sell a coin that's not making a profit.
STOP_LOSS: 2.5
# define in % when to take profit on a profitable coin.
TAKE_PROFIT: .6
# Use custom tickers.txt list for filtering pairs.
CUSTOM_LIST: True
# Name of custom tickers list
TICKERS_LIST: 'tickers_ETH.txt'
# Use custom signals list for checking TradingView's opinion of the current market state.
CUSTOM_SIGNALS: True
# Name of custom signals list
SIGNALS_LIST: 'signalsample_ETH.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.
# If using 0.75% (using BNB for fees) you must have BNB in your account to cover trading fees.
# If using BNB for fees, it MUST be enabled in your Binance 'Dashboard' page (checkbox).
TRADING_FEE: .075
# show/hide additional data on bot screen. False = silent, True = spam (debug mode).
VERBOSE_MODE: False
SIGNALLING_MODULES:
# - pausebotmod
# - signalsamplemod
- custsignalmod