update bollpp config

This commit is contained in:
c9s 2022-01-08 02:40:34 +08:00
parent d1420e66be
commit 567f0c8b59

View File

@ -5,6 +5,21 @@ persistence:
port: 6379 port: 6379
db: 0 db: 0
# example command:
# godotenv -f .env.local -- go run ./cmd/bbgo backtest --exchange max --sync-from 2020-11-01 --config config/grid.yaml --base-asset-baseline
backtest:
# for testing max draw down (MDD) at 03-12
# see here for more details
# https://www.investopedia.com/terms/m/maximum-drawdown-mdd.asp
startTime: "2021-08-01"
endTime: "2021-10-30"
symbols:
- ETHUSDT
account:
balances:
ETH: 1.0
USDT: 20_000.0
exchangeStrategies: exchangeStrategies:
- on: max - on: max
@ -17,6 +32,8 @@ exchangeStrategies:
# you need to ensure that the spread can cover your trading fee # you need to ensure that the spread can cover your trading fee
# for example, the trading fee on binance is 0.075%, so the total fee of your buy/sell orders is 0.075% * 2 = 0.14% # for example, the trading fee on binance is 0.075%, so the total fee of your buy/sell orders is 0.075% * 2 = 0.14%
spread: 0.01% spread: 0.01%
minProfitSpread: 0.1%
defaultBollinger: defaultBollinger:
interval: "5m" interval: "5m"
window: 21 window: 21