From efe62c0c92bee36da5179f34bb73e8ee4db6f814 Mon Sep 17 00:00:00 2001 From: Administrator <admin@example.com> Date: 星期二, 10 六月 2025 10:37:41 +0800 Subject: [PATCH] 买入金额>=30亿/L后撤只囊括100w以上的 --- cancel_strategy/s_l_h_cancel_strategy.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cancel_strategy/s_l_h_cancel_strategy.py b/cancel_strategy/s_l_h_cancel_strategy.py index 6788825..59bfd35 100644 --- a/cancel_strategy/s_l_h_cancel_strategy.py +++ b/cancel_strategy/s_l_h_cancel_strategy.py @@ -946,7 +946,7 @@ if temp_count >= 10: # 鑾峰彇涓綅鏁� min_num = not_cancel_indexes_with_num[temp_count // 2][1] - MIN_MONEYS = [300, 200, 100, 50] + MIN_MONEYS = [300, 200, 100] watch_indexes = set() for min_money in MIN_MONEYS: for i in range(end_index, re_start_index - 1, -1): @@ -1893,7 +1893,7 @@ @return: """ total_datas = local_today_datas.get(code) - MIN_MONEYS = [300, 200, 100, 50] + MIN_MONEYS = [300, 200, 100] watch_indexes = set() for min_money in MIN_MONEYS: for i in range(end_index, start_index - 1, -1): -- Gitblit v1.8.0