updated strategies to work with latest freqtrade version

This commit is contained in:
Gert Wohlgemuth
2018-04-21 15:39:32 -07:00
parent 15a25fff21
commit 6cffd2051e
4 changed files with 4 additions and 5 deletions
+1 -2
View File
@@ -12,10 +12,9 @@ import freqtrade.vendor.qtpylib.indicators as qtpylib
# Update this variable if you change the class name
class_name = 'CustomStrategy'
class CustomStrategy(IStrategy):
class Strategy001(IStrategy):
"""
Prod strategy 001
author@: Gerald Lonlas
+1 -1
View File
@@ -16,7 +16,7 @@ import numpy # noqa
class_name = 'CustomStrategy'
class CustomStrategy(IStrategy):
class Strategy002(IStrategy):
"""
Prod strategy 002
author@: Gerald Lonlas
+1 -1
View File
@@ -16,7 +16,7 @@ import numpy # noqa
class_name = 'CustomStrategy'
class CustomStrategy(IStrategy):
class Strategy003(IStrategy):
"""
Prod strategy 003
author@: Gerald Lonlas
+1 -1
View File
@@ -14,7 +14,7 @@ import talib.abstract as ta
class_name = 'CustomStrategy'
class CustomStrategy(IStrategy):
class Strategy004(IStrategy):
"""
Prod strategy 004
author@: Gerald Lonlas