fixes tp/sl

This commit is contained in:
olli 2024-12-17 11:07:40 +01:00
parent 9f72619f51
commit 5326e3f5bc

View File

@ -34,6 +34,14 @@ function order {
### validity checks ### ### validity checks ###
if [ -z "$f_symbol" ] || [ -z "$f_amount" ] || [ -z "$f_side" ] || [ -z "$f_price" ]
then
g_echo_error "Missing values!
Usage: order symbol amount side price [stoploss] [takeprofit]
Given: ${FUNCNAME} $@"
return 1
fi
# check symbol XXX/$CURRENCY[:$CURRENCY] # check symbol XXX/$CURRENCY[:$CURRENCY]
[[ $f_symbol =~ /$CURRENCY ]] || return 1 [[ $f_symbol =~ /$CURRENCY ]] || return 1