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