more pure bash to speed up things

This commit is contained in:
olli 2023-11-11 17:01:54 +01:00
parent 83aa27611f
commit 3406fc5b8e

View File

@ -47,10 +47,10 @@ function get_vars_from_csv {
if g_num_is_higher ${f_last_4_prices_change} 0 if g_num_is_higher ${f_last_4_prices_change} 0
then then
f_price_trend="growing,${f_last_4_prices_change}" f_price_trend="growing,${f_last_4_prices_change}"
#if g_num_is_higher ${f_3_last_line_array[2]} ${f_4_last_line_array[2]} && g_num_is_higher ${f_2_last_line_array[2]} ${f_3_last_line_array[2]} && g_num_is_higher ${f_price} ${f_2_last_line_array[2]} if g_num_is_higher ${f_3_last_line_array[2]} ${f_4_last_line_array[2]} && g_num_is_higher ${f_2_last_line_array[2]} ${f_3_last_line_array[2]} && g_num_is_higher ${f_price} ${f_2_last_line_array[2]}
#then then
# f_price_trend="constantly growing,${f_last_4_prices_change}" f_price_trend="constantly growing,${f_last_4_prices_change}"
#fi fi
elif g_num_is_lower ${f_last_4_prices_change} 0 elif g_num_is_lower ${f_last_4_prices_change} 0
then then
f_price_trend="falling,${f_last_4_prices_change}" f_price_trend="falling,${f_last_4_prices_change}"