Administrator
2025-06-10 efe62c0c92bee36da5179f34bb73e8ee4db6f814
买入金额>=30亿/L后撤只囊括100w以上的
3个文件已修改
10 ■■■■ 已修改文件
cancel_strategy/s_l_h_cancel_strategy.py 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
constant.py 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
trade/buy_radical/radical_buy_data_manager.py 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
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):
constant.py
@@ -202,7 +202,7 @@
MIN_CODE_RADICAL_BUY_PRICE = 2
# 扫入的自由流通市值区间:[[(自由流通最小值,自由流通最大值),(股价最小值,股价最大值)]]
RADICAL_BUY_ZYLTGB_AS_YI_RANGES = [[(50, 1000), (3, 50)], [(50, 1000), (2, 3)]]
RADICAL_BUY_ZYLTGB_AS_YI_RANGES = [[(30, 1000), (3, 50)], [(30, 1000), (2, 3)]]
# L2数据是否载入完成
L2_DATA_IS_LOADED = False
trade/buy_radical/radical_buy_data_manager.py
@@ -1353,7 +1353,7 @@
        """
        zyltgb = global_util.zyltgb_map.get(
            code)
        if not zyltgb or zyltgb < 50e8:
        if not zyltgb or zyltgb < 30e8:
            return False, "自由流通小于50亿"
        # 板块是否在净流入前5
@@ -1379,7 +1379,7 @@
            for c in before_codes:
                zyltgb = global_util.zyltgb_map.get(
                    c)
                if zyltgb and zyltgb >= 50e8:
                if zyltgb and zyltgb >= 30e8:
                    big_zylt_count += 1
            if big_zylt_count >= 2:
                return False, "前排有2个大市值票"