Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update config.example.yml #82

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 15 additions & 5 deletions config.example.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,28 @@
---
TRADE_OPTIONS:
# In your pairing coin
# the amount in units for each trade in PAIRING
# examples 15 = 15 units of SHIBA
QUANTITY: 15
# BTCUSDT will be bought for example
# the quoted currency of choice, e.g. BTCUSDT
# make sure to use the quote currency, e.g.
# when trading BTC/USDT use USDT
PAIRING: USDT
# How often to check for posts and run the script
# in minutes
RUN_EVERY: 0.025
# Enable/disable test mode. Setting this to False
# will use live funds to be particularly careful here
# and only enable at your own risk.
TEST: True
# Your initial stop loss in % of your account principal.
SL: 3
# Your initial profit in % of your account principal.
TP: 2
# enable trailing stop loss and profit functions
ENABLE_TSL: True
# The trailing stop value in % of the underlying price.
# 4 = 4%
TSL: 4
# The trailing profit value in % of the underlying price.
# 2 = 2%
TTP: 2
SEND_NOTIFICATIONS: True
EMAIL_ADDRESS: 'your@email.address'
EMAIL_PASSWORD: 'I'll let you figure out what this one is'