| | |
| | | datas = response_data["data"] |
| | | async_log_util.info(logger_debug, f"拉取订阅之前的数据:{code_}-{datas}") |
| | | if datas: |
| | | buy_datas = datas["buy"] |
| | | sell_datas = datas["sell"] |
| | | BeforeSubDealBigOrderManager().set_big_deal_order_list(code_, buy_datas, sell_datas, |
| | | gpcode_manager.get_limit_up_price_as_num(code_)) |
| | | try: |
| | | buy_datas = datas["buy"] |
| | | sell_datas = datas["sell"] |
| | | BeforeSubDealBigOrderManager().set_big_deal_order_list(code_, buy_datas, sell_datas, |
| | | gpcode_manager.get_limit_up_price_as_num(code_)) |
| | | except Exception as e: |
| | | logger_debug.exception(e) |
| | | |
| | | |
| | | |
| | | def get_l2_big_order_deal_info(code_): |