From 02769e803738b23fa3718501ab9b0879bf040f12 Mon Sep 17 00:00:00 2001 From: 27942 <1313123@342> Date: Sun, 8 Feb 2026 17:44:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=AE=8C=E7=BE=8E=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=EF=BC=8C=E4=BC=98=E5=8C=96=E8=AE=A1=E7=AE=97=E7=9B=88?= =?UTF-8?q?=E4=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bitmart/三分之一,五分钟,反手条件充足修改版.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bitmart/三分之一,五分钟,反手条件充足修改版.py b/bitmart/三分之一,五分钟,反手条件充足修改版.py index 41064a4..5412cb2 100644 --- a/bitmart/三分之一,五分钟,反手条件充足修改版.py +++ b/bitmart/三分之一,五分钟,反手条件充足修改版.py @@ -417,7 +417,11 @@ class BitmartFuturesTransaction: return None def check_reversal(self, current_price, prev_kline, atr, third): - """反手信号(优先级 3),仅趋势模式。返回 (reverse_long/reverse_short, trigger_price) 或 None。""" + """ + 反手信号(优先级 3),仅趋势模式。 + 当前 K 线内任意时刻均可执行反手:用当前价与上一根 K 线价位比较,无需等 K 线收盘。 + 返回 (reverse_long/reverse_short, trigger_price) 或 None。 + """ if self.mode != "TREND" or atr is None or atr <= 0: return None s = third['prev_struct']