Remove pointless asserts

This commit is contained in:
Matthias 2023-03-19 18:05:08 +01:00
parent c92f28bf6f
commit ce3efa8f00
2 changed files with 1 additions and 5 deletions

View File

@ -442,10 +442,6 @@ class Backtesting:
# Worst case: price ticks tiny bit above open and dives down.
stop_rate = row[OPEN_IDX] * (1 - side_1 * abs(
(trade.stop_loss_pct or 0.0) / leverage))
if is_short:
assert stop_rate > row[LOW_IDX]
else:
assert stop_rate < row[HIGH_IDX]
# Limit lower-end to candle low to avoid exits below the low.
# This still remains "worst case" - but "worst realistic case".

View File

@ -68,7 +68,7 @@ target-version = "py38"
extend-select = [
"C90", # mccabe
# "N", # pep8-naming
"UP", # pyupgrade
"UP", # pyupgrade
"TID", # flake8-tidy-imports
# "EXE", # flake8-executable
"YTT", # flake8-2020