Merge pull request #8 from berlinguyinca/master

updated strategies to work with latest freqtrade version
This commit is contained in:
Gérald LONLAS
2018-05-29 22:55:10 -07:00
committed by GitHub
4 changed files with 4 additions and 20 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 -6
View File
@@ -11,12 +11,7 @@ import talib.abstract as ta
import freqtrade.vendor.qtpylib.indicators as qtpylib
import numpy # noqa
# Update this variable if you change the class name
class_name = 'CustomStrategy'
class CustomStrategy(IStrategy):
class Strategy002(IStrategy):
"""
Prod strategy 002
author@: Gerald Lonlas
+1 -6
View File
@@ -11,12 +11,7 @@ import talib.abstract as ta
import freqtrade.vendor.qtpylib.indicators as qtpylib
import numpy # noqa
# Update this variable if you change the class name
class_name = 'CustomStrategy'
class CustomStrategy(IStrategy):
class Strategy003(IStrategy):
"""
Prod strategy 003
author@: Gerald Lonlas
+1 -6
View File
@@ -9,12 +9,7 @@ from pandas import DataFrame
import talib.abstract as ta
# Update this variable if you change the class name
class_name = 'CustomStrategy'
class CustomStrategy(IStrategy):
class Strategy004(IStrategy):
"""
Prod strategy 004
author@: Gerald Lonlas