Revert unintended comment change.

This commit is contained in:
eSeR1805 2022-05-01 12:10:11 +03:00
parent 8c19953cdd
commit 9d205132d0
No known key found for this signature in database
GPG Key ID: BA53686259B46936

View File

@ -661,8 +661,7 @@ class Backtesting:
proposed_rate=propose_rate, entry_tag=entry_tag,
side=direction,
) # default value is the open rate
# We can't place orders higher than current high (otherwise it'd be a stop limit buy)
# We can't place orders higher than current high (otherwise it'd be a stop limit entry)
# which freqtrade does not support in live.
if direction == "short":
propose_rate = max(propose_rate, row[LOW_IDX])