fix
This commit is contained in:
parent
21cddf372b
commit
53861b2a8e
@ -91,12 +91,22 @@ function order {
|
|||||||
# Add stoploos and take profit if available
|
# Add stoploos and take profit if available
|
||||||
if [ -n "$f_stoploss" ]
|
if [ -n "$f_stoploss" ]
|
||||||
then
|
then
|
||||||
|
if g_num_is_higher_equal $f_stoploss $f_price
|
||||||
|
then
|
||||||
|
g_echo_warn "Order not possible: Stoploss ($f_stoploss) higher then buy price ($f_price)"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
f_ccxt "print($STOCK_EXCHANGE.priceToPrecision('${f_symbol}', ${f_stoploss}))"
|
f_ccxt "print($STOCK_EXCHANGE.priceToPrecision('${f_symbol}', ${f_stoploss}))"
|
||||||
f_stoploss=$f_ccxt_result
|
f_stoploss=$f_ccxt_result
|
||||||
f_params="${f_params}'stopLossPrice': '$f_stoploss', "
|
f_params="${f_params}'stopLossPrice': '$f_stoploss', "
|
||||||
fi
|
fi
|
||||||
if [ -n "$f_takeprofit" ]
|
if [ -n "$f_takeprofit" ]
|
||||||
then
|
then
|
||||||
|
if g_num_is_lower_equal $f_takeprofit $f_price
|
||||||
|
then
|
||||||
|
g_echo_warn "Order not possible:TakeProfit ($f_takeprofit) lower then buy price ($f_price)"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
f_ccxt "print($STOCK_EXCHANGE.priceToPrecision('${f_symbol}', ${f_takeprofit}))"
|
f_ccxt "print($STOCK_EXCHANGE.priceToPrecision('${f_symbol}', ${f_takeprofit}))"
|
||||||
f_takeprofit=$f_ccxt_result
|
f_takeprofit=$f_ccxt_result
|
||||||
f_params="${f_params}'takeProfitPrice': '$f_takeprofit', "
|
f_params="${f_params}'takeProfitPrice': '$f_takeprofit', "
|
||||||
|
Loading…
Reference in New Issue
Block a user