optimizing method

This commit is contained in:
Gert Wohlgemuth 2018-04-26 19:10:51 -07:00
parent 6c85fd911f
commit b2bf90849d

View File

@ -22,7 +22,7 @@ class Quickie(IStrategy):
# Minimal ROI designed for the strategy. # Minimal ROI designed for the strategy.
# This attribute will be overridden if the config file contains "minimal_roi" # This attribute will be overridden if the config file contains "minimal_roi"
minimal_roi = { minimal_roi = {
"20": 0.01, "100": 0.01,
"15": 0.06, "15": 0.06,
"10": 0.15 "10": 0.15
} }
@ -40,7 +40,7 @@ class Quickie(IStrategy):
dataframe['macdsignal'] = macd['macdsignal'] dataframe['macdsignal'] = macd['macdsignal']
dataframe['macdhist'] = macd['macdhist'] dataframe['macdhist'] = macd['macdhist']
dataframe['tema'] = ta.TEMA(dataframe, timeperiod=100) dataframe['tema'] = ta.TEMA(dataframe, timeperiod=9)
dataframe['adx'] = ta.ADX(dataframe) dataframe['adx'] = ta.ADX(dataframe)
# required for graphing # required for graphing