| | |
| | | |
| | | # (代码,名称,涨停时间,涨幅,现手,自由市值,现价) |
| | | data = [code, gpcode_manager.get_code_name(code)] |
| | | limit_up_time = LimitUpDataConstant.get_first_limit_up_time(code) |
| | | if not limit_up_time: |
| | | limit_up_time = int(time.time()) |
| | | data.append(limit_up_time) |
| | | if not tool.is_can_buy_code(code): |
| | | fdatas.append(data) |
| | | continue |
| | | limit_up_time = LimitUpDataConstant.get_first_limit_up_time(code) |
| | | limit_up_price = gpcode_manager.get_limit_up_price_as_num(code) |
| | | data.append(limit_up_time) |
| | | |
| | | pre_close_price = CodePrePriceManager().get_price_pre_cache(code) |
| | | latest_transaction_data = HuaXinTransactionDatasProcessor.get_latest_transaction_data(code) |
| | | # 获取L1数据 |