From ca78f5670e99bc32a987bb341a962dedfe0d4679 Mon Sep 17 00:00:00 2001 From: mablue Date: Mon, 13 Feb 2023 00:24:30 +0330 Subject: [PATCH] varbuse removed --- user_data/strategies/UniversalMACD.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/user_data/strategies/UniversalMACD.py b/user_data/strategies/UniversalMACD.py index 22ca2fc..3b55837 100644 --- a/user_data/strategies/UniversalMACD.py +++ b/user_data/strategies/UniversalMACD.py @@ -99,7 +99,10 @@ class UniversalMACD(IStrategy): dataframe['ma26'] = ta.EMA(dataframe, timeperiod=26) dataframe['umacd'] = (dataframe['ma12'] / dataframe['ma26']) - 1 - print(dataframe['umacd'].min(), dataframe['umacd'].max()) + # Just for show user the min and max of indicator in different coins to set inside hyperoptable variables.cuz + # in different timeframes should change the min and max in hyperoptable variables. + # print(dataframe['umacd'].min(), dataframe['umacd'].max()) + return dataframe def populate_entry_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame: