update installer script

This commit is contained in:
c9s 2021-03-13 19:43:40 +08:00
parent b89f05603f
commit e1ad2b49bf

View File

@ -1,12 +1,14 @@
#!/bin/bash #!/bin/bash
osf=$(uname | tr '[:upper:]' '[:lower:]') osf=$(uname | tr '[:upper:]' '[:lower:]')
version=v1.6.0 version=v1.13.0
dist_file=bbgo-$version-$osf-amd64.tar.gz
echo "Downloading bbgo" echo "downloading..."
curl -L -o bbgo https://github.com/c9s/bbgo/releases/download/$version/bbgo-$osf curl -L https://github.com/c9s/bbgo/releases/download/$version/$dist_file
tar xzf $dist_file
mv bbgo-darwin bbgo
chmod +x bbgo chmod +x bbgo
echo "Binary downloaded" echo "downloaded"
echo "Config file is generated"
function gen_dotenv() function gen_dotenv()
{ {
@ -14,8 +16,8 @@ function gen_dotenv()
read -p "Enter your MAX API secret: " api_secret read -p "Enter your MAX API secret: " api_secret
echo "Generating your .env.local file..." echo "Generating your .env.local file..."
cat <<END > .env.local cat <<END > .env.local
export MAX_API_KEY=$api_key MAX_API_KEY=$api_key
export MAX_API_SECRET=$api_secret MAX_API_SECRET=$api_secret
END END
} }
@ -57,10 +59,11 @@ exchangeStrategies:
- on: max - on: max
bollgrid: bollgrid:
symbol: BTCUSDT symbol: BTCUSDT
interval: 5m interval: 1h
gridNumber: 20 gridNumber: 20
quantity: 0.001 quantity: 0.001
profitSpread: 50.0 profitSpread: 100.0
END END
echo "Config file is generated" echo "Config file is generated"
@ -76,7 +79,7 @@ fi
echo "To run bbgo just type: " echo "To run bbgo just type: "
echo "" echo ""
echo " source .env.local && ./bbgo run --config bbgo.yaml" echo " ./bbgo run"
echo "" echo ""
echo "To stop bbgo, just hit CTRL-C" echo "To stop bbgo, just hit CTRL-C"