41 lines
943 B
Plaintext
Executable File
41 lines
943 B
Plaintext
Executable File
# Default Config file for Dabo-Bot. Pleasse don't change!
|
|
|
|
# Webpage URL
|
|
URL="mydabobot.mydomain"
|
|
|
|
# The exchange we use for using the correct API (BINANCE or ONETRADING)
|
|
STOCK_EXCHANGE="NONE"
|
|
|
|
# fee per trade in percentage on exchange (taker and maker added)
|
|
FEE="0.5"
|
|
|
|
# Interval in seconds - Should not be lower then 300
|
|
INTERVAL="300"
|
|
|
|
## Currency used for trading
|
|
CURRENCY="USDT"
|
|
TRANSFER_CURRENCY="USD"
|
|
|
|
# Only use currencies under the first X currencies sorted by market capitalization
|
|
LARGEST_MARKETCAP="250"
|
|
|
|
# symbols that should be traded
|
|
SYMBOLS="ETH SOL"
|
|
|
|
## Signal Group for Notifications
|
|
NOTIFICATION_GROUP="Dabo-Bot"
|
|
|
|
## Percent from balance per invest.
|
|
# Overwritten by MIN_NOTIONAL+X% from stock if lower
|
|
INVEST="5"
|
|
|
|
# Stop all trading and sell everything if the complete balance shrinks under this value in ${CURRENCY}
|
|
EMERGENCY_STOP="1000"
|
|
|
|
# Leverage
|
|
LEVERAGE=""
|
|
|
|
# margin mode (isolated or cross)
|
|
MARGIN_MODE="isolated"
|
|
|