This commit is contained in:
olli 2024-09-02 14:51:46 +02:00
parent 563c63b57b
commit e5fd834a9d
2 changed files with 3 additions and 8 deletions

View File

@ -351,14 +351,9 @@ ${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.
Show all available: An example you can find in example-values.
```
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

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