2022-05-30 08:48:07 +00:00
|
|
|
---
|
|
|
|
persistence:
|
|
|
|
redis:
|
|
|
|
host: 127.0.0.1
|
|
|
|
port: 6379
|
|
|
|
db: 0
|
|
|
|
|
|
|
|
sessions:
|
|
|
|
binance:
|
|
|
|
exchange: binance
|
|
|
|
envVarPrefix: binance
|
2022-05-31 07:46:55 +00:00
|
|
|
margin: true
|
|
|
|
isolatedMargin: true
|
|
|
|
isolatedMarginSymbol: BTCUSDT
|
2022-05-30 08:48:07 +00:00
|
|
|
|
|
|
|
backtest:
|
|
|
|
sessions: [binance]
|
|
|
|
# for testing max draw down (MDD) at 03-12
|
|
|
|
# see here for more details
|
|
|
|
# https://www.investopedia.com/terms/m/maximum-drawdown-mdd.asp
|
2022-07-06 09:51:35 +00:00
|
|
|
startTime: "2022-01-01"
|
|
|
|
endTime: "2022-06-18"
|
2022-05-30 08:48:07 +00:00
|
|
|
symbols:
|
|
|
|
- BTCUSDT
|
|
|
|
accounts:
|
|
|
|
binance:
|
|
|
|
makerCommission: 10 # 0.15%
|
|
|
|
takerCommission: 15 # 0.15%
|
|
|
|
balances:
|
|
|
|
BTC: 1.0
|
|
|
|
USDT: 10000.0
|
|
|
|
|
|
|
|
exchangeStrategies:
|
|
|
|
- on: binance
|
|
|
|
supertrend:
|
|
|
|
symbol: BTCUSDT
|
|
|
|
|
|
|
|
# interval is how long do you want to update your order price and quantity
|
|
|
|
interval: 1h
|
|
|
|
|
|
|
|
# leverage is the leverage of the orders
|
2022-05-30 09:02:20 +00:00
|
|
|
leverage: 1.0
|
2022-05-30 08:48:07 +00:00
|
|
|
|
|
|
|
# fastDEMAWindow and slowDEMAWindow are for filtering super trend noise
|
|
|
|
fastDEMAWindow: 144
|
|
|
|
slowDEMAWindow: 169
|
|
|
|
|
2022-05-31 09:48:25 +00:00
|
|
|
# Supertrend indicator parameters
|
2022-05-30 08:48:07 +00:00
|
|
|
superTrend:
|
2022-05-31 09:48:25 +00:00
|
|
|
# ATR window used by Supertrend
|
2022-05-30 08:48:07 +00:00
|
|
|
averageTrueRangeWindow: 39
|
|
|
|
# ATR Multiplier for calculating super trend prices, the higher, the stronger the trends are
|
|
|
|
averageTrueRangeMultiplier: 3
|
2022-05-31 04:53:14 +00:00
|
|
|
|
|
|
|
# TP according to ATR multiple, 0 to disable this
|
|
|
|
takeProfitMultiplier: 3
|
|
|
|
|
|
|
|
# Set SL price to the low of the triggering Kline
|
|
|
|
stopLossByTriggeringK: true
|
|
|
|
|
|
|
|
# TP/SL by reversed signals
|
|
|
|
tpslBySignal: true
|