优化log+6

This commit is contained in:
zhangkun9038@dingtalk.com 2026-02-10 02:02:34 +08:00
parent 028a532dcd
commit 817a8e5ff3

View File

@ -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']