This commit is contained in:
aaron 2026-02-10 00:30:07 +08:00
parent f60f9c71eb
commit 22e19a4f1e

View File

@ -352,7 +352,9 @@ class CryptoAgent:
return False
confidence = signal.get('confidence', 0)
if confidence < 70:
# 使用配置文件中的阈值
threshold = self.settings.crypto_llm_threshold * 100 # 转换为百分比
if confidence < threshold:
return False
# 检查冷却时间30分钟内不重复发送相同方向的信号