2020-11-11 09:51:02 +00:00
|
|
|
#!/bin/bash
|
|
|
|
osf=$(uname | tr '[:upper:]' '[:lower:]')
|
2020-12-31 09:46:31 +00:00
|
|
|
version=v1.6.0
|
2020-11-11 09:51:02 +00:00
|
|
|
|
2020-11-12 08:56:32 +00:00
|
|
|
echo "Downloading bbgo"
|
|
|
|
curl -L -o bbgo https://github.com/c9s/bbgo/releases/download/$version/bbgo-$osf
|
|
|
|
chmod +x bbgo
|
|
|
|
echo "Binary downloaded"
|
2020-11-11 09:51:02 +00:00
|
|
|
|
2020-11-11 10:11:33 +00:00
|
|
|
if [[ -e "bbgo.yaml" ]] ; then
|
|
|
|
echo "Found existing bbgo.yaml, you will overwrite the existing bbgo.yaml file!"
|
|
|
|
read -p "Are you sure? (Y/n) " a
|
|
|
|
if [[ $a == "n" ]] ; then
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
fi
|
2020-11-11 09:51:02 +00:00
|
|
|
|
|
|
|
cat <<END > bbgo.yaml
|
|
|
|
---
|
|
|
|
riskControls:
|
|
|
|
sessionBased:
|
|
|
|
max:
|
|
|
|
orderExecutor:
|
|
|
|
bySymbol:
|
|
|
|
BTCUSDT:
|
|
|
|
# basic risk control order executor
|
|
|
|
basic:
|
|
|
|
minQuoteBalance: 100.0
|
|
|
|
maxBaseAssetBalance: 3.0
|
|
|
|
minBaseAssetBalance: 0.0
|
|
|
|
maxOrderAmount: 1000.0
|
|
|
|
|
|
|
|
exchangeStrategies:
|
|
|
|
- on: max
|
|
|
|
grid:
|
|
|
|
symbol: BTCUSDT
|
2020-11-11 09:56:11 +00:00
|
|
|
quantity: 0.002
|
2020-11-11 09:51:02 +00:00
|
|
|
gridNumber: 100
|
|
|
|
profitSpread: 50.0
|
|
|
|
upperPrice: 14000.0
|
|
|
|
lowerPrice: 11000.0
|
|
|
|
END
|
|
|
|
|
2020-11-11 10:12:57 +00:00
|
|
|
echo "Config file is generated"
|
2020-11-11 09:51:02 +00:00
|
|
|
|
2020-11-11 10:11:33 +00:00
|
|
|
if [[ -e ".env.local" ]] ; then
|
|
|
|
echo "Found existing .env.local, you will overwrite the existing .env.local file!"
|
|
|
|
read -p "Are you sure? (Y/n) " a
|
|
|
|
if [[ $a == "n" ]] ; then
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
fi
|
2020-11-11 09:51:02 +00:00
|
|
|
|
|
|
|
read -p "Enter your MAX API key: " api_key
|
2020-11-11 10:11:33 +00:00
|
|
|
|
2020-11-11 09:51:02 +00:00
|
|
|
read -p "Enter your MAX API secret: " api_secret
|
|
|
|
|
|
|
|
echo "Generating your .env.local file..."
|
|
|
|
cat <<END > .env.local
|
|
|
|
export MAX_API_KEY=$api_key
|
|
|
|
export MAX_API_SECRET=$api_secret
|
|
|
|
END
|
|
|
|
|
|
|
|
echo "Now you can edit your strategy config file bbgo.yaml to run bbgo"
|
|
|
|
|
|
|
|
if [[ $osf == "darwin" ]] ; then
|
|
|
|
echo "We found you're using MacOS, you can type:"
|
|
|
|
echo ""
|
|
|
|
echo " open -a TextEdit bbgo.yaml"
|
|
|
|
echo ""
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "To run bbgo just type: "
|
|
|
|
echo ""
|
|
|
|
echo " source .env.local && ./bbgo run --config bbgo.yaml"
|
|
|
|
echo ""
|
|
|
|
echo "To stop bbgo, just hit CTRL-C"
|
|
|
|
|
|
|
|
if [[ $osf == "darwin" ]] ; then
|
|
|
|
open -a TextEdit bbgo.yaml
|
|
|
|
fi
|
|
|
|
|