Administrator
2025-04-18 2cd01c4ff2fd4ba417a775d39c0c89a1a12590ff
bug修复
1个文件已修改
6 ■■■■ 已修改文件
trade/buy_radical/new_block_processor.py 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
trade/buy_radical/new_block_processor.py
@@ -118,7 +118,7 @@
    if zyltgb and zyltgb < 10e8:
        return False
    k_format = code_nature_analyse.CodeNatureRecordManager().get_k_format_cache(code)
    if zyltgb >= 50e8:
    if zyltgb and zyltgb >= 50e8:
        # 50亿以上的不需要形态突破
        return True
    if not k_format or not k_format[1][0]:
@@ -220,3 +220,7 @@
        # 有新题材
        return not __is_can_add_new_block(code)
    return True
if __name__ == "__main__":
    BeforeBlocksComputer()