mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 18:23:55 +00:00
round printed stoploss value as well
This commit is contained in:
parent
a12876da92
commit
cadf573170
|
@ -151,7 +151,8 @@ class Hyperopt(Backtesting):
|
||||||
# Round printed values to 5 digits after the decimal point
|
# Round printed values to 5 digits after the decimal point
|
||||||
pprint(round_dict(self.custom_hyperopt.generate_roi_table(params), 5), indent=4)
|
pprint(round_dict(self.custom_hyperopt.generate_roi_table(params), 5), indent=4)
|
||||||
if self.has_space('stoploss'):
|
if self.has_space('stoploss'):
|
||||||
print(f"Stoploss: {params.get('stoploss')}")
|
# Also round to 5 digits after the decimal point
|
||||||
|
print(f"Stoploss: {round(params.get('stoploss'), 5)}")
|
||||||
|
|
||||||
def log_results(self, results) -> None:
|
def log_results(self, results) -> None:
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue
Block a user