bbgo_origin/config/pricedrop.yaml

62 lines
1.3 KiB
YAML
Raw Normal View History

2020-10-26 09:00:07 +00:00
---
notifications:
slack:
defaultChannel: "bbgo"
errorChannel: "bbgo-error"
reportPnL:
- averageCostBySymbols:
- "BTCUSDT"
- "ETHUSDT"
- "BNBUSDT"
of: binance
when:
- "@daily"
- "@hourly"
sessions:
binance:
exchange: binance
envVarPrefix: binance
riskControls:
# This is the session-based risk controller, which let you configure different risk controller by session.
sessionBased:
# "max" is the session name that you want to configure the risk control
max:
# orderExecutors is one of the risk control
2020-11-09 06:56:54 +00:00
orderExecutor:
# symbol-routed order executor
bySymbol:
BTCUSDT:
# basic risk control order executor
basic:
minQuoteBalance: 1000.0
maxBaseAssetBalance: 2.0
minBaseAssetBalance: 0.1
maxOrderAmount: 100.0
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: "2022-01-01"
endTime: "2022-01-15"
symbols:
- BTCUSDT
account:
binance:
makerFeeRate: 15
takerFeeRate: 15
balances:
BTC: 0.1
USDT: 10000.0
2020-10-26 09:00:07 +00:00
exchangeStrategies:
- on: binance
2021-10-14 05:10:00 +00:00
pricedrop:
2020-10-26 09:00:07 +00:00
symbol: "BTCUSDT"
interval: "1m"
2020-10-28 01:43:19 +00:00
baseQuantity: 0.001
2020-12-05 05:32:16 +00:00
minDropPercentage: -0.01