adjusted ROI to speed up runtime
This commit is contained in:
		| @@ -22,11 +22,8 @@ class Quickie(IStrategy): | |||||||
|     # Minimal ROI designed for the strategy. |     # Minimal ROI designed for the strategy. | ||||||
|     # This attribute will be overridden if the config file contains "minimal_roi" |     # This attribute will be overridden if the config file contains "minimal_roi" | ||||||
|     minimal_roi = { |     minimal_roi = { | ||||||
|         "100": 0.01, |         "60": 0.005, | ||||||
|         "45": 0.02, |         "10": 0.01, | ||||||
|         "30": 0.03, |  | ||||||
|         "15": 0.06, |  | ||||||
|         "10": 0.15, |  | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     # Optimal stoploss designed for the strategy |     # Optimal stoploss designed for the strategy | ||||||
|   | |||||||
| @@ -25,7 +25,7 @@ class Simple(IStrategy): | |||||||
|     # since this strategy is planned around 5 minutes, we assume any time we have a 5% profit we should call it a day |     # since this strategy is planned around 5 minutes, we assume any time we have a 5% profit we should call it a day | ||||||
|     # This attribute will be overridden if the config file contains "minimal_roi" |     # This attribute will be overridden if the config file contains "minimal_roi" | ||||||
|     minimal_roi = { |     minimal_roi = { | ||||||
|         "0": 0.5 |         "0": 0.01 | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     # Optimal stoploss designed for the strategy |     # Optimal stoploss designed for the strategy | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user