This strategy is true when the the BID/ASK price is less than x% close to your liquidation price.
DEFAULT_X_sell_strategy = LIQPRICE
DEFAULT_X_sell_value = 10
Let's say we are LONG and liquidation price is 10000. Purchase price is 12000
This is a band of 12000 - 10000 = 2000
10% of 2000 = 200
10% away from LONG liquidation is 10200
If the ticker price goes below 10200 the bot will trigger a sell
DEFAULT_A_sell_value = 10
Let's say we are SHORT and liquidation price is 10000. Purchase price is 7000
This is a band of 10000 - 7000 = 3000
20% of 3000 = 600
20% away from SHORT liquidation is 9400
If the ticker price goes above 9400 the bot will trigger a sell
DEFAULT_A_sell_value = -20