This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Trade on all the market pairs of the specified quote currency. | |
# Written by Stefan van As <[email protected]> | |
# Example: ./ETH-XXX-2.sh --exchange=Bittrex --quote=ETH --price=0.05 --pushover-app-key=X --pushover-user-key=X | |
for i in "$@" | |
do | |
case $i in | |
--exchange=*) | |
EXCHANGE="${i#*=}" | |
shift # past argument=value |