mirror of
https://github.com/freqtrade/freqtrade.git
synced 2026-03-04 12:55:39 +00:00
A few more formatting updates
This commit is contained in:
@@ -508,9 +508,9 @@ def test_min_roi_reached3(default_conf, fee) -> None:
|
||||
0.09,
|
||||
0.98,
|
||||
ExitType.NONE,
|
||||
lambda current_profit, **kwargs: -0.1
|
||||
if current_profit < 0.6
|
||||
else -(current_profit * 2),
|
||||
lambda current_profit, **kwargs: (
|
||||
-0.1 if current_profit < 0.6 else -(current_profit * 2)
|
||||
),
|
||||
),
|
||||
# Error case - static stoploss in place
|
||||
(
|
||||
|
||||
Reference in New Issue
Block a user