Administrator
2025-04-11 a4f00fbbd588fcf2edd581cd4612b30045916dce
没有获取到板块的代码取当日涨停原因
1个文件已修改
8 ■■■■ 已修改文件
third_data/kpl_data_constant.py 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
third_data/kpl_data_constant.py
@@ -240,10 +240,14 @@
        @return:
        """
        blocks = set(self.__radical_buy_reasons_dict.get(code, set()))
        if not blocks:
            b = LimitUpDataConstant.get_limit_up_reason_with_history(code)
            if b:
                blocks.add(b)
        # 获取代码的板块
        # 获取代码的新题材
        new_blocks = get_new_blocks(code)
        return blocks | new_blocks
        _new_blocks = get_new_blocks(code)
        return blocks | _new_blocks
class TodayLimitUpReasonChangeManager: