Administrator
2025-04-01 3c73469c54a73e1828d627b6956f5b818040ff52
trade/current_price_process_manager.py
@@ -128,6 +128,16 @@
                continue
            # 净流入 + 辨识度
            return index + 1
    # 判断今日辨识度
    try:
        for b in blocks:
            if radical_buy_data_manager.RadicalBuyBlockManager.is_today_block_special_codes(code, b, yesterday_limit_up_codes):
                if b in top_in_blocks:
                    index = top_in_blocks.index(b)
                    return index + 1
    except Exception as e:
        logger_debug.exception(e)
    return 10000