csv headline in buy/sell message

This commit is contained in:
2023-05-13 21:03:15 +02:00
parent 73d0564f36
commit 854dfe1b58
2 changed files with 6 additions and 6 deletions

View File

@@ -178,9 +178,9 @@ ${f_BUY}"
# ANALYZE
if [ -n "$f_BUY" ] && [ -z "${BOT}" ]
then
echo "BUY: ${f_echo_prefix} All BUY conditions met!!!
${csv_headline}
${f_BUY}"
echo "BUY: ${f_echo_prefix} All BUY conditions met!!!"
echo "${csv_headline}
${f_BUY}" | perl -pe 's/((?<=,)|(?<=^)),/ ,/g;' | column -t -s,
echo "$f_BUY" >${g_tmp}/open-${tmpfile}
BUY_PRICE=$current
fi