Compare commits

..

No commits in common. "e5fd834a9d6a9b4bf41a9d7ae74cd76e99d7e761" and "cc413f69a1ef92503b73c939ca5cb301013c9304" have entirely different histories.

4 changed files with 8 additions and 7465 deletions

View File

@ -351,9 +351,14 @@ ${v[ETHUSDT_1w_macd_histogram_signal_1]}
${v[SOLUSDT_levels_1d]} ${v[SOLUSDT_levels_1d]}
$v[$[SOLUSDT_levels_1d_next_up]} $v[$[SOLUSDT_levels_1d_next_up]}
$v[$[ETHUSDT_levels_1w_next_down]} $v[$[ETHUSDT_levels_1w_next_down]}
``` ```
You can find a complete list of available values in the file `data/botdata/values` whic is creates in the runtime of the bot.
An example you can find in example-values. Show all available:
```
for x in "${!v[@]}"; do printf "[%q]=%q\n" "$x" "${v[$x]}" ; done
```
#### Current price from exchange #### Current price from exchange
${f_tickers_array[SYMBOL]} ${f_tickers_array[SYMBOL]}

View File

@ -32,7 +32,6 @@ function get_balance {
printf -v CURRENCY_BALANCE %.2f ${f_CURRENCY_BALANCE} printf -v CURRENCY_BALANCE %.2f ${f_CURRENCY_BALANCE}
else else
g_echo_warn "Could not determine CURRENCY_BALANCE (${f_CURRENCY_BALANCE} ${CURRENCY}) from file CCXT_BALANCE $(tail -n 10 CCXT_BALANCE)" g_echo_warn "Could not determine CURRENCY_BALANCE (${f_CURRENCY_BALANCE} ${CURRENCY}) from file CCXT_BALANCE $(tail -n 10 CCXT_BALANCE)"
unset f_ccxt_initialized
return 3 return 3
fi fi

View File

@ -96,7 +96,7 @@ function get_values {
for i in "${!v[@]}" for i in "${!v[@]}"
do do
echo "\${v[$i]} = ${v[$i]}" echo "\${v[$i]}"
done | sort >values.new done | sort >values.new
mv values.new values mv values.new values

File diff suppressed because it is too large Load Diff