Merge branch 'aws' of https://github.com/berlinguyinca/freqtrade into aws
This commit is contained in:
commit
8f0254458c
@ -176,6 +176,15 @@ def __evaluate(data):
|
||||
"""
|
||||
|
||||
strategy = urlsafe_b64decode(data['content']).decode('utf-8')
|
||||
|
||||
# comment out hyper opt references, they are no supported here
|
||||
# due to lambda size limitations
|
||||
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)
|
||||
# try to load the strategy
|
||||
|
Loading…
Reference in New Issue
Block a user