From e2be72b43b3fea10eb1c1eb341b8ac07c0a5bdae Mon Sep 17 00:00:00 2001 From: olli Date: Thu, 28 Nov 2024 14:42:07 +0100 Subject: [PATCH] return 0 fix --- dabo/functions/get_positions.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dabo/functions/get_positions.sh b/dabo/functions/get_positions.sh index 465e97e..c96c099 100644 --- a/dabo/functions/get_positions.sh +++ b/dabo/functions/get_positions.sh @@ -71,6 +71,8 @@ select(.entryPrice != 0) | [ -n "$f_takeprofit" ] && sed -i "/^$f_symbol,.*,${p[${f_asset}_side]},/s/^\(\([^,]*,\)\{7\}\)[^,]*/\1$f_takeprofit/" CCXT_POSITIONS fi + return 0 + done }