diff --git a/user_data/strategies/Strategy001.py b/user_data/strategies/Strategy001.py index 67cd938..57f8fda 100644 --- a/user_data/strategies/Strategy001.py +++ b/user_data/strategies/Strategy001.py @@ -41,7 +41,7 @@ class Strategy001(IStrategy): trailing_stop_positive_offset = 0.02 # run "populate_indicators" only for new candle - ta_on_candle = False + process_only_new_candles = False # Experimental settings (configuration will overide these if set) use_sell_signal = True diff --git a/user_data/strategies/Strategy002.py b/user_data/strategies/Strategy002.py index 1667176..ccfb9bf 100644 --- a/user_data/strategies/Strategy002.py +++ b/user_data/strategies/Strategy002.py @@ -42,7 +42,7 @@ class Strategy002(IStrategy): trailing_stop_positive_offset = 0.02 # run "populate_indicators" only for new candle - ta_on_candle = False + process_only_new_candles = False # Experimental settings (configuration will overide these if set) use_sell_signal = True diff --git a/user_data/strategies/Strategy003.py b/user_data/strategies/Strategy003.py index 743e7c7..66b0e24 100644 --- a/user_data/strategies/Strategy003.py +++ b/user_data/strategies/Strategy003.py @@ -42,7 +42,7 @@ class Strategy003(IStrategy): trailing_stop_positive_offset = 0.02 # run "populate_indicators" only for new candle - ta_on_candle = False + process_only_new_candles = False # Experimental settings (configuration will overide these if set) use_sell_signal = True diff --git a/user_data/strategies/Strategy004.py b/user_data/strategies/Strategy004.py index 3986597..bc2cffe 100644 --- a/user_data/strategies/Strategy004.py +++ b/user_data/strategies/Strategy004.py @@ -41,7 +41,7 @@ class Strategy004(IStrategy): trailing_stop_positive_offset = 0.02 # run "populate_indicators" only for new candle - ta_on_candle = False + process_only_new_candles = False # Experimental settings (configuration will overide these if set) use_sell_signal = True @@ -55,7 +55,7 @@ class Strategy004(IStrategy): 'stoploss': 'market', 'stoploss_on_exchange': False } - + def informative_pairs(self): """ Define additional, informative pair/interval combinations to be cached from the exchange. diff --git a/user_data/strategies/Strategy005.py b/user_data/strategies/Strategy005.py index 3fee2c8..3240d6f 100644 --- a/user_data/strategies/Strategy005.py +++ b/user_data/strategies/Strategy005.py @@ -44,7 +44,7 @@ class Strategy005(IStrategy): trailing_stop_positive_offset = 0.02 # run "populate_indicators" only for new candle - ta_on_candle = False + process_only_new_candles = False # Experimental settings (configuration will overide these if set) use_sell_signal = True @@ -124,7 +124,7 @@ class Strategy005(IStrategy): # Prod ( (dataframe['close'] > 0.00000200) & - (dataframe['volume'] > dataframe['volume'].mean() * 4) & + (dataframe['volume'] > dataframe['volume'].rolling(200).mean() * 4) & (dataframe['close'] < dataframe['sma']) & (dataframe['fastd'] > dataframe['fastk']) & (dataframe['rsi'] > 0) &