dep ensure && \
go build -o bid src/* && \
./bid 0.001
Build
dep ensure # fetching dependencies
go build -o bid src/* # build the src content into an executable called 'bid'
./bid 0.001 # runs the executable with the desired BTC amount to buy at average price
Dev
air . # golang live reload
Description
this project is meant to cancel old orders and place new ones to updated prices;