2020-10-31 12:36:58 +00:00
|
|
|
---
|
|
|
|
notifications:
|
|
|
|
slack:
|
|
|
|
defaultChannel: "dev-bbgo"
|
|
|
|
errorChannel: "bbgo-error"
|
|
|
|
|
|
|
|
# if you want to route channel by symbol
|
|
|
|
symbolChannels:
|
|
|
|
"^BTC": "btc"
|
|
|
|
"^ETH": "eth"
|
|
|
|
"^BNB": "bnb"
|
|
|
|
|
|
|
|
# object routing rules
|
|
|
|
routing:
|
|
|
|
trade: "$symbol"
|
|
|
|
order: "$symbol"
|
|
|
|
submitOrder: "$session" # not supported yet
|
|
|
|
pnL: "bbgo-pnl"
|
|
|
|
|
|
|
|
sessions:
|
|
|
|
binance:
|
|
|
|
exchange: binance
|
|
|
|
envVarPrefix: binance
|
|
|
|
|
|
|
|
max:
|
|
|
|
exchange: max
|
|
|
|
envVarPrefix: max
|
|
|
|
|
|
|
|
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
|
|
|
|
orderExecutors:
|
|
|
|
# symbol-routed order executor
|
|
|
|
bySymbol:
|
2020-11-05 06:27:22 +00:00
|
|
|
BTCUSDT:
|
2020-10-31 12:36:58 +00:00
|
|
|
# basic risk control order executor
|
|
|
|
basic:
|
2020-11-05 06:27:22 +00:00
|
|
|
minQuoteBalance: 2000.0
|
|
|
|
maxBaseAssetBalance: 1.0
|
|
|
|
minBaseAssetBalance: 0.0
|
2020-10-31 12:36:58 +00:00
|
|
|
maxOrderAmount: 200.0
|
|
|
|
|
|
|
|
exchangeStrategies:
|
|
|
|
- on: max
|
|
|
|
grid:
|
2020-11-05 06:27:22 +00:00
|
|
|
symbol: BTCUSDT
|
2020-10-31 12:36:58 +00:00
|
|
|
interval: 1m
|
2020-11-05 06:27:22 +00:00
|
|
|
baseQuantity: 0.001
|
|
|
|
gridPips: 10.0
|
|
|
|
gridNumber: 3
|
2020-11-05 07:04:56 +00:00
|
|
|
minProfitSpread: 30
|
2020-10-31 12:36:58 +00:00
|
|
|
|