Administrator
2023-07-27 a0d0b95cef6890990327a75bf0596899dd5fd1ad
bug修复
1个文件已修改
2 ■■■ 已修改文件
third_data/data_server.py 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
third_data/data_server.py
@@ -368,7 +368,7 @@
                if d[2] != plate:
                    continue
                # 代码,名称,涨停时间,是否炸板,是否想买,是否已经下过单
                codes_info.append([d[3], d[4], tool.to_time_str(d[5]), d[3] not in now_limit_up_codes, False, False])
                codes_info.append([d[3], d[4], tool.to_time_str(int(d[5])), d[3] not in now_limit_up_codes, False, False])
            codes_info.sort(key=lambda x: x[2])
            # 查询是否为想买单
            want_codes = gpcode_manager.WantBuyCodesManager.list_code()