bbgo_origin/config/grid.yaml

61 lines
1.7 KiB
YAML
Raw Normal View History

2020-10-29 13:09:26 +00:00
---
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
2021-12-04 18:16:48 +00:00
# example command:
# godotenv -f .env.local -- go run ./cmd/bbgo backtest --sync-from 2020-11-01 --config config/grid.yaml --base-asset-baseline
2020-11-10 11:06:20 +00:00
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-10"
endTime: "2022-01-11"
2020-11-10 11:06:20 +00:00
symbols:
- BTCUSDT
2020-11-10 11:06:20 +00:00
account:
binance:
balances:
BTC: 0.0
USDT: 10000.0
2020-10-29 13:09:26 +00:00
exchangeStrategies:
2021-02-20 03:52:56 +00:00
- on: binance
2020-10-29 13:09:26 +00:00
grid:
2020-11-10 11:06:20 +00:00
symbol: BTCUSDT
2021-12-04 18:16:48 +00:00
quantity: 0.001
# scaleQuantity:
# byPrice:
# exp:
# domain: [20_000, 30_000]
# range: [0.2, 0.001]
2021-12-04 18:51:08 +00:00
gridNumber: 100
2021-12-16 10:35:44 +00:00
profitSpread: 1000.0 # The profit price spread that you want to add to your sell order when your buy order is executed
2021-12-04 18:16:48 +00:00
upperPrice: 50_000.0
lowerPrice: 20_000.0
2021-12-16 10:35:44 +00:00
long: true # The sell order is submitted in the same order amount as the filled corresponding buy order, rather than the same quantity.
2021-02-20 03:52:56 +00:00