diff --git a/freqtrade/aws/strategy.py b/freqtrade/aws/strategy.py index 9d0fb145c..21f364a5a 100644 --- a/freqtrade/aws/strategy.py +++ b/freqtrade/aws/strategy.py @@ -179,7 +179,11 @@ def __evaluate(data): # comment out hyper opt references, they are no supported here # due to lambda size limitations - strategy = "\n".join(list(map(lambda x: "#{}".format(x) if "hyperopt" in x else x, strategy.split("\n")))) + strategy = "\n".join( + list( + map( + lambda x: "#{} # this version does not support hyperopt!".format(x) if "hyperopt" in x else x, + strategy.split("\n")))) # print("loaded strategy") # print(strategy)