| | |
| | | if code in yesterday_codes: |
| | | continue |
| | | |
| | | if l2_trade_util.is_in_forbidden_trade_codes(code) and code not in deal_codes: |
| | | # 拉黑但是没成交 |
| | | continue |
| | | |
| | | # 人为拉黑的需要移除 |
| | | if HumanForbiddenManager().is_in_cache(code): |
| | | continue |
| | | |
| | | if not tool.is_can_buy_code(code): |
| | | continue |
| | | # (代码,名称,涨停时间,涨幅,现手,自由市值,现价) |
| | | data = [code, gpcode_manager.get_code_name(code)] |
| | | 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) |