diff --git a/freqtrade/templates/freqaiprimer.py b/freqtrade/templates/freqaiprimer.py index 854f7c3c..93972e5a 100644 --- a/freqtrade/templates/freqaiprimer.py +++ b/freqtrade/templates/freqaiprimer.py @@ -995,7 +995,7 @@ class FreqaiPrimer(IStrategy): price_bb_ratios = (dataframe['close'] / dataframe['bb_lower_1h']).iloc[-5:] bb_threshold = self.bb_lower_deviation.value # 价格/布林带下轨应该小于这个值 bb_lower_visual = ''.join([get_color_emoji(val, bb_threshold, 'less_than') for val in price_bb_ratios]) - self.strategy_log(f" - 价格接近布林带下轨(越红越近): [{bb_lower_visual}]") + self.strategy_log(f" - 价格接近布林带下轨(越绿越近): [{bb_lower_visual}]") # 如果EMA条件满足但最终条件未满足,输出详细信息 if ema_trend_count > 0 and final_condition_count == 0: @@ -1399,7 +1399,7 @@ class FreqaiPrimer(IStrategy): price_bb_ratios = (df['close'] / df['bb_lower_3m']).iloc[-5:] bb_threshold = self.bb_lower_deviation.value # 价格/布林带下轨应该小于这个值 bb_lower_visual = ''.join([get_color_emoji(val, bb_threshold, 'less_than') for val in price_bb_ratios]) - self.strategy_log(f" - 价格<布林下轨*{bb_threshold}(越红越近): [{bb_lower_visual}]") + self.strategy_log(f" - 价格<布林下轨*{bb_threshold}(越绿越近): [{bb_lower_visual}]") # EMA趋势过滤条件可视化 (布尔值,使用原来的✅❌) ema_cross_condition = df['ema5_cross_above_ema20']