Merge pull request #8 from berlinguyinca/master
updated strategies to work with latest freqtrade version
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user