bbgo_origin/config/grid.yaml

70 lines
1.5 KiB
YAML
Raw Normal View History

2020-10-29 13:09:26 +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
2020-10-29 13:09:26 +00:00
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
2020-11-12 08:34:57 +00:00
max:
2020-11-09 06:56:54 +00:00
# orderExecutor is one of the risk control
orderExecutor:
2020-10-29 13:09:26 +00:00
# symbol-routed order executor
bySymbol:
2020-11-10 11:06:20 +00:00
BTCUSDT:
2020-10-29 13:09:26 +00:00
# basic risk control order executor
basic:
minQuoteBalance: 100.0
2020-11-10 11:06:20 +00:00
maxBaseAssetBalance: 3.0
minBaseAssetBalance: 0.0
maxOrderAmount: 1000.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
2020-11-12 04:55:54 +00:00
startTime: "2020-09-04"
endTime: "2020-09-14"
2020-11-10 11:06:20 +00:00
symbols:
- BTCUSDT
account:
makerCommission: 15
takerCommission: 15
balances:
2020-11-12 04:55:54 +00:00
BTC: 0.0
2020-11-10 11:06:20 +00:00
USDT: 10000.0
2020-10-29 13:09:26 +00:00
exchangeStrategies:
2020-11-12 08:34:57 +00:00
- on: max
2020-10-29 13:09:26 +00:00
grid:
2020-11-10 11:06:20 +00:00
symbol: BTCUSDT
quantity: 0.01
2020-11-12 08:34:57 +00:00
gridNumber: 10
2020-11-10 11:06:20 +00:00
profitSpread: 50.0
upperPrice: 11000.0
lowerPrice: 9000.0