fix: dont run get_assts if STOCK_EXCHANGE= is NONE

This commit is contained in:
olli 2024-02-07 11:16:18 +01:00
parent d9ce0ab7e2
commit 9d0e0b388c

View File

@ -82,13 +82,13 @@ do
[ -z "${INTERVAL_MIN}" ] && INTERVAL_MIN=1 [ -z "${INTERVAL_MIN}" ] && INTERVAL_MIN=1
# stock data # stock data
if [ ${STOCK_EXCHANGE} = "BINANCE" ] if [ "${STOCK_EXCHANGE}" = "BINANCE" ]
then then
# command for current token infos (function for setting var QUANTITY_LOT_CUT # command for current token infos (function for setting var QUANTITY_LOT_CUT
TOKEN_INFO_CMD="binance_get_token_info" TOKEN_INFO_CMD="binance_get_token_info"
# command for buying/selling a token # command for buying/selling a token
TRADE_CMD='binance-api-call POST /api/v3/order "&symbol=TOKEN&quoteOrderQty=QUANTITY&side=ACTION&type=MARKET"' TRADE_CMD='binance-api-call POST /api/v3/order "&symbol=TOKEN&quoteOrderQty=QUANTITY&side=ACTION&type=MARKET"'
elif [ ${STOCK_EXCHANGE} = "BITPANDA" ] elif [ "${STOCK_EXCHANGE}" = "BITPANDA" ]
then then
TOKEN_INFO_CMD="bitpanda_get_token_info" TOKEN_INFO_CMD="bitpanda_get_token_info"
TRADE_CMD='bitpanda-api-call POST public/v1/account/orders "--header \"Content-Type: application/json\" --data \"{\\\"instrument_code\\\":\\\"TOKEN\\\",\\\"side\\\":\\\"ACTION\\\",\\\"type\\\":\\\"MARKET\\\",\\\"amount\\\":\\\"QUANTITY\\\"}\""' TRADE_CMD='bitpanda-api-call POST public/v1/account/orders "--header \"Content-Type: application/json\" --data \"{\\\"instrument_code\\\":\\\"TOKEN\\\",\\\"side\\\":\\\"ACTION\\\",\\\"type\\\":\\\"MARKET\\\",\\\"amount\\\":\\\"QUANTITY\\\"}\""'
@ -101,7 +101,7 @@ do
watch_assets watch_assets
# Get current assets # Get current assets
if ! [ STOCK_EXCHANGE -eq "NONE" ] if [ "${STOCK_EXCHANGE}" != "NONE" ]
then then
get_assets || continue get_assets || continue
fi fi