This commit is contained in:
olli 2023-11-27 20:33:03 +01:00
parent becb139a49
commit 77fe1e63da

View File

@ -1,5 +1,6 @@
function get_vars_from_csv {
unset f_empty_var
f_ASSET_HIST_FILE="$1"
if ! [ -s "${f_ASSET_HIST_FILE}" ]
then
@ -125,6 +126,7 @@ f_macd_histogram_signal=${f_macd_histogram_signal}"
# Coingecko price
get_var_from_line coingecko_price 40
[ -n "${f_empty_var}" ] && return 1
}
@ -133,6 +135,7 @@ function get_var_from_line {
then
g_echo_note "${f_ASSET_HIST_FILE}: Didn't get $1 in position $2"
declare -g f_$1=0
f_empty_var=1
else
#declare -g f_$1="$(echo ${f_last_line_array[$2]})"
declare -g f_$1="${f_last_line_array[$2]}"