diff --git a/config/sync.yaml b/config/sync.yaml index c711a3771..c78198912 100644 --- a/config/sync.yaml +++ b/config/sync.yaml @@ -15,6 +15,14 @@ sessions: exchange: max envVarPrefix: max + kucoin: + exchange: kucoin + envVarPrefix: kucoin + + okex: + exchange: okex + envVarPrefix: okex + sync: # userDataStream is used to sync the trading data in real-time # it uses the websocket connection to insert the trades @@ -31,6 +39,8 @@ sync: - binance - binance_margin_dotusdt - max + - okex + - kucoin # symbols is the list of symbols you want to sync # by default, BBGO try to guess your symbols by your existing account balances. @@ -47,6 +57,6 @@ sync: marginAssets: - USDT - # depositHistory: true - # rewardHistory: true + depositHistory: true + rewardHistory: true withdrawHistory: true diff --git a/scripts/release-test.sh b/scripts/release-test.sh new file mode 100644 index 000000000..cb0b7883d --- /dev/null +++ b/scripts/release-test.sh @@ -0,0 +1,4 @@ +#!/bin/bash +set -e +dotenv -f .env.local.mysql -- go run ./cmd/bbgo sync --session binance --config config/sync.yaml +dotenv -f .env.local.sqlite -- go run ./cmd/bbgo sync --session binance --config config/sync.yaml