adjust_trade_position should return stake_amount, not amount
This commit is contained in:
Stefano Ariestasia
2022-08-04 20:55:52 +09:00
committed by GitHub
parent 95327750dc
commit febd809119

View File

@@ -721,7 +721,7 @@ class DigDeeperStrategy(IStrategy):
if current_profit > 0.05 and trade.nr_of_successful_exits == 0:
# Take half of the profit at +5%
return -(trade.amount / 2)
return -(trade.stake_amount / 2)
if current_profit > -0.05:
return None