bbgo_origin/scripts/setup-bollgrid.sh

118 lines
2.5 KiB
Bash
Raw Permalink Normal View History

2020-11-14 04:45:44 +00:00
#!/bin/bash
2021-03-13 11:48:58 +00:00
set -e
2020-11-14 04:45:44 +00:00
2021-03-13 11:59:56 +00:00
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[0;33m'
NC='\033[0m' # No Color
function warn()
{
echo -e "${YELLOW}$@${NC}"
}
function error()
{
echo -e "${RED}$@${NC}"
}
function info()
{
echo -e "${GREEN}$@${NC}"
}
version=$(curl -fs https://api.github.com/repos/c9s/bbgo/releases/latest | awk -F '"' '/tag_name/{print $4}')
2021-05-07 11:32:11 +00:00
osf=$(uname | tr '[:upper:]' '[:lower:]')
arch=""
case $(uname -m) in
x86_64 | ia64) arch="amd64";;
arm64 | aarch64 | arm) arch="arm64";;
*)
echo "unsupported architecture: $(uname -m)"
exit 1;;
esac
2021-05-07 11:32:11 +00:00
dist_file=bbgo-$version-$osf-$arch.tar.gz
exchange=max
if [[ -n $1 ]] ; then
exchange=$1
fi
exchange_upper=$(echo -n $exchange | tr 'a-z' 'A-Z')
2021-05-07 11:32:11 +00:00
2021-03-13 11:59:56 +00:00
info "downloading..."
2021-03-13 11:48:58 +00:00
curl -O -L https://github.com/c9s/bbgo/releases/download/$version/$dist_file
2021-03-13 11:43:40 +00:00
tar xzf $dist_file
2021-05-07 11:32:11 +00:00
mv bbgo-$osf-$arch bbgo
2020-11-14 04:45:44 +00:00
chmod +x bbgo
2021-03-13 11:59:56 +00:00
info "downloaded successfully"
2020-11-14 04:45:44 +00:00
function gen_dotenv()
{
read -p "Enter your $exchange_upper API key: " api_key
read -p "Enter your $exchange_upper API secret: " api_secret
info "Generating your .env.local file..."
2020-11-14 04:45:44 +00:00
cat <<END > .env.local
${exchange_upper}_API_KEY=$api_key
${exchange_upper}_API_SECRET=$api_secret
2020-11-14 04:45:44 +00:00
END
info "dotenv is configured successfully"
2020-11-14 04:45:44 +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
gen_dotenv
fi
else
gen_dotenv
fi
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
cat <<END > bbgo.yaml
---
exchangeStrategies:
- on: ${exchange}
2020-11-14 04:45:44 +00:00
bollgrid:
symbol: BTCUSDT
2021-03-13 11:43:40 +00:00
interval: 1h
2020-11-14 04:45:44 +00:00
gridNumber: 20
quantity: 0.001
2021-03-13 11:43:40 +00:00
profitSpread: 100.0
2020-11-14 04:45:44 +00:00
END
2021-03-13 11:59:56 +00:00
info "config file is generated successfully"
2020-11-14 05:28:22 +00:00
echo "================================================================"
2021-03-13 11:59:56 +00:00
echo "now you can edit your strategy config file bbgo.yaml to run bbgo"
2020-11-14 04:45:44 +00:00
if [[ $osf == "darwin" ]] ; then
2021-03-13 11:59:56 +00:00
echo "we found you're using MacOS, you can type:"
2020-11-14 04:45:44 +00:00
echo ""
echo " open -a TextEdit bbgo.yaml"
echo ""
2021-03-13 11:59:56 +00:00
else
echo "you look like a pro user, you can edit the config by:"
echo ""
echo " vim bbgo.yaml"
echo ""
2020-11-14 04:45:44 +00:00
fi
echo "To run bbgo just type: "
echo ""
2021-03-13 11:43:40 +00:00
echo " ./bbgo run"
2020-11-14 04:45:44 +00:00
echo ""
echo "To stop bbgo, just hit CTRL-C"
if [[ $osf == "darwin" ]] ; then
open -a TextEdit bbgo.yaml
fi