Skip to content

Commit d9915a1

Browse files
committed
Add empty buy tags to quick sell mode.
1 parent dee88f0 commit d9915a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NostalgiaForInfinityNext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3802,7 +3802,7 @@ def custom_sell(self, pair: str, trade: 'Trade', current_time: 'datetime', curre
38023802
return None
38033803

38043804
# Quick sell mode
3805-
if all(c in ['32', '33', '34', '35', '36', '37', '38', '40'] for c in buy_tags):
3805+
if all(c in ['empty', '32', '33', '34', '35', '36', '37', '38', '40'] for c in buy_tags):
38063806
sell, signal_name = self.sell_quick_mode(current_profit, max_profit, last_candle, previous_candle_1)
38073807
if sell and (signal_name is not None):
38083808
return f"{signal_name} ( {buy_tag} )"

0 commit comments

Comments
 (0)