mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +00:00
904e7c03ad
strategy: cleanup funding strategy
39 lines
726 B
YAML
39 lines
726 B
YAML
---
|
|
notifications:
|
|
slack:
|
|
defaultChannel: "dev-bbgo"
|
|
errorChannel: "bbgo-error"
|
|
|
|
# if you want to route channel by symbol
|
|
symbolChannels:
|
|
"^BTC": "btc"
|
|
"^ETH": "eth"
|
|
|
|
# object routing rules
|
|
routing:
|
|
trade: "$symbol"
|
|
order: "$symbol"
|
|
submitOrder: "$session" # not supported yet
|
|
pnL: "bbgo-pnl"
|
|
|
|
sessions:
|
|
binance:
|
|
exchange: binance
|
|
envVarPrefix: binance
|
|
futures: true
|
|
|
|
exchangeStrategies:
|
|
- on: binance
|
|
funding:
|
|
symbol: ETHUSDT
|
|
quantity: 0.0001
|
|
fundingRate:
|
|
high: 0.01%
|
|
supportDetection:
|
|
- interval: 1m
|
|
movingAverageType: EMA
|
|
movingAverageIntervalWindow:
|
|
interval: 15m
|
|
window: 60
|
|
minVolume: 8_000
|