fixes tp/sl

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

View File

@ -33,7 +33,15 @@ function order {
local f_type f_side_opposite f_pos_side f_side_opposide f_trigger_sl f_trigger_tp local f_type f_side_opposite f_pos_side f_side_opposide f_trigger_sl f_trigger_tp
### 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