From b2bf90849dc378820e209d3d0c75ceec50ddee4a Mon Sep 17 00:00:00 2001 From: Gert Wohlgemuth Date: Thu, 26 Apr 2018 19:10:51 -0700 Subject: [PATCH] optimizing method --- user_data/strategies/Quickie.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user_data/strategies/Quickie.py b/user_data/strategies/Quickie.py index a2fcf4e18..2d434e30e 100644 --- a/user_data/strategies/Quickie.py +++ b/user_data/strategies/Quickie.py @@ -22,7 +22,7 @@ class Quickie(IStrategy): # Minimal ROI designed for the strategy. # This attribute will be overridden if the config file contains "minimal_roi" minimal_roi = { - "20": 0.01, + "100": 0.01, "15": 0.06, "10": 0.15 } @@ -40,7 +40,7 @@ class Quickie(IStrategy): dataframe['macdsignal'] = macd['macdsignal'] dataframe['macdhist'] = macd['macdhist'] - dataframe['tema'] = ta.TEMA(dataframe, timeperiod=100) + dataframe['tema'] = ta.TEMA(dataframe, timeperiod=9) dataframe['adx'] = ta.ADX(dataframe) # required for graphing