dabo/dabo/dabo-bot.conf

41 lines
943 B
Plaintext
Raw Normal View History

2023-05-09 17:04:02 +02:00
# Default Config file for Dabo-Bot. Pleasse don't change!
2023-05-02 10:53:48 +02:00
# Webpage URL
2023-05-09 17:04:02 +02:00
URL="mydabobot.mydomain"
2024-04-09 09:23:40 +02:00
# The exchange we use for using the correct API (BINANCE or ONETRADING)
2024-02-06 16:28:02 +01:00
STOCK_EXCHANGE="NONE"
2023-05-02 10:53:48 +02:00
# fee per trade in percentage on exchange (taker and maker added)
2023-05-09 17:04:02 +02:00
FEE="0.5"
2023-05-02 10:53:48 +02:00
2024-02-07 12:36:11 +01:00
# Interval in seconds - Should not be lower then 300
2024-08-25 13:58:33 +02:00
INTERVAL="300"
2023-05-02 10:53:48 +02:00
## Currency used for trading
2024-02-06 16:28:02 +01:00
CURRENCY="USDT"
2024-06-04 15:12:00 +02:00
TRANSFER_CURRENCY="USD"
2023-05-02 10:53:48 +02:00
# Only use currencies under the first X currencies sorted by market capitalization
LARGEST_MARKETCAP="250"
2024-07-14 22:08:59 +02:00
# symbols that should be traded
SYMBOLS="ETH SOL"
2023-05-02 10:53:48 +02:00
## Signal Group for Notifications
2024-08-21 22:47:35 +02:00
NOTIFICATION_GROUP="Dabo-Bot"
2023-05-02 10:53:48 +02:00
## 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}
2023-05-09 17:04:02 +02:00
EMERGENCY_STOP="1000"
2023-05-02 10:53:48 +02:00
2024-06-10 20:35:22 +02:00
# Leverage
LEVERAGE=""
2024-06-14 19:51:12 +02:00
# margin mode (isolated or cross)
MARGIN_MODE="isolated"