From 6bbfbbb16d792f7737ec86cabdba5c0e98dcf4b4 Mon Sep 17 00:00:00 2001 From: Administrator <admin@example.com> Date: 星期五, 29 八月 2025 17:41:29 +0800 Subject: [PATCH] 有涨停买撤单要触发撤单计算 --- code_attribute/code_nature_analyse.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/code_attribute/code_nature_analyse.py b/code_attribute/code_nature_analyse.py index 5c8379b..ce27951 100644 --- a/code_attribute/code_nature_analyse.py +++ b/code_attribute/code_nature_analyse.py @@ -406,7 +406,7 @@ # if max_price > float(limit_up_price): # return False rate = (max_price_info[1]["high"] - min_price_info[1]["low"]) / min_price_info[1]["low"] - THRESHOLD_RATE = 0.319 * 2 if tool.is_ge_code(code) else 0.319 + THRESHOLD_RATE = 0.249 * 2 if tool.is_ge_code(code) else 0.249 if rate >= THRESHOLD_RATE: return True, rate return False, rate -- Gitblit v1.8.0