31 lines
1.2 KiB
Bash
31 lines
1.2 KiB
Bash
# Example strategy for managing open positions
|
|
|
|
g_echo_note "EXAMPLE Strategy for managing open positions"
|
|
|
|
##### WARNING! This strategy is only intended as an example and should not be used with real trades. Please develop your own strategy ######
|
|
|
|
# if you want to use this remove the next line with return 0
|
|
#return 0
|
|
|
|
# get vars with positions
|
|
get_position_array
|
|
|
|
# go through trading symbols
|
|
for symbol in ${f_symbols_array_trade[@]}
|
|
do
|
|
echo "==== XXXXX $symbol"
|
|
done
|
|
|
|
##### WARNING! This strategy is only intended as an example and should not be used with real trades. Please develop your own strategy ######
|
|
# if you want to use ist remove the next line with return 0
|
|
#return 0
|
|
|
|
|
|
# create stoploss order
|
|
#print(exchange.createOrder(symbol='XRP/USDT:USDT', type='Stop', side='sell', amount='0', price='None', params={'posSide': 'Long', 'stopPx':0.5}))
|
|
#print(exchange.createOrder(symbol='XRP/USDT:USDT', type='Stop', amount='0', side='sell', price='None', params={'posSide': 'Long', 'stopPx': 0.5}))
|
|
|
|
# edit stoploss
|
|
#print(exchange.editOrder(id='debc0df8-10c7-4cfd-95f7-b4de9cc60332', symbol='XRP/USDT:USDT', type='Stop', side='sell', amount='101', params={'stopLossPrice': 0.48}))
|
|
|