csv headline in buy/sell message

This commit is contained in:
olli 2023-05-13 20:44:16 +02:00
parent 5fbce3269b
commit 73d0564f36
3 changed files with 5 additions and 4 deletions

View File

@ -19,7 +19,7 @@ function analyze {
. dabo/functions/check_buy_conditions.sh . dabo/functions/check_buy_conditions.sh
. dabo/functions/check_sell_conditions.sh . dabo/functions/check_sell_conditions.sh
. dabo/functions/get_vars_from_csv.sh . dabo/functions/get_vars_from_csv.sh
#. dabo/dabo-bot.conf . dabo/dabo-bot.conf
. dabo-bot.conf . dabo-bot.conf
. analyze.conf . analyze.conf

View File

@ -32,3 +32,7 @@ INVEST="5"
# Stop all trading and sell everything if the complete balance shrinks under this value in ${CURRENCY} # Stop all trading and sell everything if the complete balance shrinks under this value in ${CURRENCY}
EMERGENCY_STOP="1000" EMERGENCY_STOP="1000"
# Headline - don't touch
export csv_headline="Date and Time,Price,Price Change,EMA12,EMA26,MACD,EMA9 MACD (Signal),MACD Histogram,MACD Signal,RSI5,RSI14,RSI21,RSI720,RSI60,RSI120,RSI240,RSI420,Price Change 24h,Price Change 7d,Price Change 14d,Price Change 30d"

View File

@ -13,9 +13,6 @@ BASEPATH=/dabo/htdocs
g_tries=3 g_tries=3
g_tries_delay=5 g_tries_delay=5
export csv_headline="Date and Time,Price,Price Change,EMA12,EMA26,MACD,EMA9 MACD (Signal),MACD Histogram,MACD Signal,RSI5,RSI14,RSI21,RSI720,RSI60,RSI120,RSI240,RSI420,Price Change 24h,Price Change 7d,Price Change 14d,Price Change 30d"
### FUNCTIONS ### ### FUNCTIONS ###
for bashfunc in $(find ${BASEPATH}/../functions -type f -name "*.sh") for bashfunc in $(find ${BASEPATH}/../functions -type f -name "*.sh")
do do