more attempts to get tests to pass

This commit is contained in:
werkkrew 2021-03-13 19:30:21 -05:00
parent a3d6b472a7
commit f8a76ca161
2 changed files with 14 additions and 0 deletions

View File

@ -41,6 +41,13 @@ class {{ strategy }}(IStrategy):
"0": 0.04
}
# Dynamic ROI - It is not recommended to enable this without first fully
# reading the documentation.
# This attribute will be overridden if the config file contains "minimal_roi".
dynamic_roi = {
'dynamic_roi_enabled': False
}
# Optimal stoploss designed for the strategy.
# This attribute will be overridden if the config file contains "stoploss".
stoploss = -0.10

View File

@ -42,6 +42,13 @@ class SampleStrategy(IStrategy):
"0": 0.04
}
# Dynamic ROI - It is not recommended to enable this without first fully
# reading the documentation.
# This attribute will be overridden if the config file contains "minimal_roi".
dynamic_roi = {
'dynamic_roi_enabled': False
}
# Optimal stoploss designed for the strategy.
# This attribute will be overridden if the config file contains "stoploss".
stoploss = -0.10