From b8eff41fef7b4ee2c20a4d268ac83a4f420f34b0 Mon Sep 17 00:00:00 2001 From: Administrator <admin@example.com> Date: 星期四, 21 十一月 2024 14:26:13 +0800 Subject: [PATCH] 测试日志 --- api/outside_api_command_callback.py | 136 ++++++++++++++++++++++++++++++++++++++++---- 1 files changed, 122 insertions(+), 14 deletions(-) diff --git a/api/outside_api_command_callback.py b/api/outside_api_command_callback.py index 59c9995..d39d432 100644 --- a/api/outside_api_command_callback.py +++ b/api/outside_api_command_callback.py @@ -1,3 +1,4 @@ +import base64 import concurrent.futures import copy import json @@ -26,7 +27,7 @@ l2_data_source_util, cancel_buy_strategy from l2.code_price_manager import Buy1PriceManager -from l2.l2_data_manager import TradePointManager +from l2.l2_data_manager import TradePointManager, OrderBeginPosInfo from l2.l2_data_util import L2DataUtil from l2.l2_transaction_data_manager import HuaXinBuyOrderManager, BigOrderDealManager from log_module import async_log_util, log_export @@ -35,7 +36,7 @@ logger_real_place_order_position, logger_device from output import l2_output_util from third_data import kpl_util, history_k_data_manager, huaxin_l1_data_manager, third_blocks_manager, kpl_data_manager -from third_data.code_plate_key_manager import CodePlateKeyBuyManager, KPLCodeJXBlockManager +from third_data.code_plate_key_manager import KPLCodeJXBlockManager from third_data.history_k_data_manager import HistoryKDataManager from third_data.history_k_data_util import JueJinApi, HistoryKDatasUtils from third_data.kpl_data_manager import KPLDataManager @@ -44,10 +45,12 @@ from third_data.third_blocks_manager import CodeThirdBlocksManager, SOURCE_TYPE_KPL, BlockMapManager from trade import trade_manager, l2_trade_util, trade_data_manager, trade_constant import l2_data_util as l2_data_util_old +from trade.buy_money_count_setting import BuyMoneyAndCountSetting, RadicalBuyBlockCodeCountManager from trade.huaxin import huaxin_trade_api, huaxin_trade_data_update, \ huaxin_trade_record_manager, huaxin_trade_order_processor, huaxin_sell_util from trade.huaxin.huaxin_trade_record_manager import PositionManager, DealRecordManager, DelegateRecordManager +from trade.buy_radical.radical_buy_data_manager import RadicalBuyBlockManager from trade.sell import sell_manager from trade.sell.sell_rule_manager import TradeRuleManager, SellRule from trade.trade_manager import TradeTargetCodeModeManager, AutoCancelSellModeManager @@ -90,7 +93,7 @@ def __cancel_not_deal_order(self, code, order_ref, timeout=3): time.sleep(timeout) # 鎾や拱鍗� - huaxin_trade_api.cancel_order(1, code, "", orderRef=order_ref) + huaxin_trade_api.cancel_order(huaxin_trade_api.TRADE_DIRECTION_BUY, code, "", orderRef=order_ref) # 浜ゆ槗 def OnTrade(self, client_id, request_id, data): @@ -279,10 +282,14 @@ code_list_type = data["code_list_type"] operate = data["operate"] code = data.get("code") + if code and not tool.is_can_buy_code(code): + raise Exception(f"涓嶆槸鍙互浜ゆ槗鐨勪唬鐮侊細{code}") fresult = {"code": 0} if code_list_type == outside_api_command_manager.CODE_LIST_WANT: if operate == outside_api_command_manager.OPERRATE_SET: gpcode_manager.WantBuyCodesManager().add_code(code) + # 鍔犳兂涔板崟瑕佷粠榛戝悕鍗曠Щ闄� + l2_trade_util.remove_from_forbidden_trade_codes(code) name = gpcode_manager.get_code_name(code) if not name: results = HistoryKDatasUtils.get_gp_codes_names([code]) @@ -377,6 +384,7 @@ elif code_list_type == outside_api_command_manager.CODE_LIST_GREEN: if operate == outside_api_command_manager.OPERRATE_SET: gpcode_manager.GreenListCodeManager().add_code(code) + gpcode_manager.WantBuyCodesManager().add_code(code) name = gpcode_manager.get_code_name(code) if not name: results = HistoryKDatasUtils.get_gp_codes_names([code]) @@ -384,6 +392,7 @@ gpcode_manager.CodesNameManager.add_first_code_name(code, results[code]) elif operate == outside_api_command_manager.OPERRATE_DELETE: gpcode_manager.GreenListCodeManager().remove_code(code) + gpcode_manager.WantBuyCodesManager().remove_code(code) elif operate == outside_api_command_manager.OPERRATE_GET: codes = gpcode_manager.GreenListCodeManager().list_codes_cache() datas = [] @@ -437,7 +446,8 @@ white = gpcode_manager.WhiteListCodeManager().is_in_cache(code) black = l2_trade_util.is_in_forbidden_trade_codes(code) pause_buy = gpcode_manager.PauseBuyCodesManager().is_in_cache(code) - + must_buy = gpcode_manager.MustBuyCodesManager().is_in_cache(code) + green = gpcode_manager.GreenListCodeManager().is_in_cache(code) desc_list = [] if want: desc_list.append("銆愭兂涔板崟銆�") @@ -447,6 +457,11 @@ desc_list.append("銆愰粦鍚嶅崟銆�") if pause_buy: desc_list.append("銆愭殏涓嶄拱銆�") + if must_buy: + desc_list.append("銆愮孩鍚嶅崟銆�") + if green: + desc_list.append("銆愮豢鍚嶅崟銆�") + result = {"code": 0, "data": {"code_info": (code, code_name), "desc": "".join(desc_list)}} self.send_response(result, client_id, request_id) except Exception as e: @@ -864,14 +879,18 @@ # 鑾峰彇涓嬪崟浣嶇疆淇℃伅 order_begin_pos = TradePointManager().get_buy_compute_start_data_cache(code) if order_begin_pos is None or order_begin_pos.buy_single_index is None: - continue + order_begin_pos = OrderBeginPosInfo(buy_single_index=0, buy_exec_index=0) l2_data_util.load_l2_data(code) total_datas = l2_data_util.local_today_datas.get(code) + if not total_datas: + continue trade_index, is_default = transaction_progress.TradeBuyQueue().get_traded_index(code) if trade_index is None: trade_index = 0 # 涓嬪崟浣嶇疆 place_order_index = SCancelBigNumComputer().get_real_place_order_index_cache(code) + if place_order_index is None: + place_order_index = 0 # 璁$畻淇″彿浣嶇疆鍒扮湡瀹炰笅鍗曚綅缃殑鎬讳拱锛堜笉绠℃槸鍚﹀凡鎾わ級 total_nums = 0 for i in range(order_begin_pos.buy_single_index, place_order_index): @@ -915,7 +934,7 @@ limit_up_price = gpcode_manager.get_limit_up_price(code) buy1_money = Buy1PriceManager().get_latest_buy1_money(code) if buy1_money is None: - buy1_money = 0 + buy1_money = 1 # 鑾峰彇宸茬粡鎴愪氦鐨勫ぇ鍗曟暟閲� total_big_num = 0 total_big_count = 0 @@ -998,7 +1017,7 @@ real_place_order_after_num += val["num"] # 鑾峰彇褰撴棩鐨勯噺姣� - volume_rate = code_volumn_manager.get_volume_rate(code) + volume_rate = code_volumn_manager.CodeVolumeManager().get_volume_rate(code) # 鏄惁闇�瑕佹敞鎰� need_pay_attention = (total_left_count <= 10 or total_left_num * float( @@ -1056,7 +1075,7 @@ "pay_attention": need_pay_attention, "trade_progress_percent": round( total_left_num * float(limit_up_price) * 100 * 100 / buy1_money, 2), # 鎴愪氦杩涘害姣斾緥 - "limit_up_price": float(gpcode_manager.get_limit_up_price(code)), + "limit_up_price": gpcode_manager.get_limit_up_price_as_num(code), "is_near_big_order": is_near_big_order, "block": '', "trade_queue": [] @@ -1086,6 +1105,14 @@ zyltgb = global_util.zyltgb_map.get(code) if zyltgb is not None: fdata['zyltgb'] = output_util.money_desc(zyltgb) + except: + pass + + try: + if order_begin_pos: + fdata['mode'] = order_begin_pos.mode + else: + fdata['mode'] = -1 except: pass @@ -1157,8 +1184,8 @@ elif ctype == "set_per_code_buy_money": # 璁剧疆鍗曞彧绁ㄧ殑涔板叆閲戦 money = data["money"] - if money > 30000: - raise Exception("鏈�澶氬彧鑳借缃�3w") + if money > 50000: + raise Exception("鏈�澶氬彧鑳借缃�5w") constant.BUY_MONEY_PER_CODE = money self.send_response({"code": 0, "data": {"money": constant.BUY_MONEY_PER_CODE}}, client_id, request_id) elif ctype == "get_per_code_buy_money": @@ -1168,6 +1195,8 @@ kpl_data_manager.PullTask.repaire_pull_task() # 淇鏁版嵁鏈嶅姟 server_util.repaire_data_server() + # 浠诲姟淇 + huaxin_trade_data_update.repaire_task() self.send_response({"code": 0, "data": {}}, client_id, request_id) elif ctype == "get_trade_queue": code = data["code"] @@ -1181,7 +1210,7 @@ # 鑾峰彇澶у崟鎴愪氦鍒楄〃 code = data["code"] data_list = BigOrderDealManager().get_total_buy_money_list(code) - bigger_money = l2_data_util_old.get_big_money_val(float(gpcode_manager.get_limit_up_price(code)), + bigger_money = l2_data_util_old.get_big_money_val(gpcode_manager.get_limit_up_price_as_num(code), tool.is_ge_code(code)) fdatas = [] for d in data_list: @@ -1229,18 +1258,19 @@ source_origin_dict = copy.deepcopy(CodeThirdBlocksManager().get_source_blocks_origin(code)) if not source_origin_dict: source_origin_dict = {} - kpl_blocks = KPLCodeJXBlockManager().get_jx_blocks_radical(code) + kpl_blocks = RadicalBuyBlockManager.get_code_kpl_blocks(code) if kpl_blocks is None: kpl_blocks = set() if not kpl_blocks: KPLCodeJXBlockManager().load_jx_blocks_radical(code) - match_blocks, info = CodeThirdBlocksManager().get_intersection_blocks_info(code, kpl_blocks) + + filter_blocks, match_blocks = RadicalBuyBlockManager.get_code_blocks(code) source_origin_dict[SOURCE_TYPE_KPL] = kpl_blocks source_dict[SOURCE_TYPE_KPL] = BlockMapManager().filter_blocks(kpl_blocks) data = { "blocks": {}, "origin_blocks": {}, - "match_blocks": list(match_blocks) + "match_blocks": [list(filter_blocks), list(match_blocks)] } for s in source_origin_dict: data["origin_blocks"][s] = list(source_origin_dict[s]) @@ -1250,6 +1280,84 @@ self.send_response({"code": 0, "data": data, "msg": f""}, client_id, request_id) + elif ctype == "set_buy_money_count_setting": + # 璁剧疆涔板叆閲戦鍜屾暟閲� + normal = data["normal"] + radical = data["radical"] + default_buy_money = data["default_buy_money"] + if int(default_buy_money) not in constant.AVAILABLE_BUY_MONEYS: + raise Exception("榛樿閲戦涓嶅湪棰勮閲戦鍐�") + constant.BUY_MONEY_PER_CODE = default_buy_money + BuyMoneyAndCountSetting().set_normal_buy_data(normal[0], json.loads(normal[1])) + BuyMoneyAndCountSetting().set_radical_buy_data(radical[0], json.loads(radical[1])) + data = { + "normal": BuyMoneyAndCountSetting().get_normal_buy_setting(), + "radical": BuyMoneyAndCountSetting().get_radical_buy_setting() + } + self.send_response({"code": 0, "data": data, "msg": f""}, + client_id, + request_id) + elif ctype == "get_buy_money_count_setting": + # 璁剧疆涔板叆閲戦鍜屾暟閲� + data = { + "normal": BuyMoneyAndCountSetting().get_normal_buy_setting(), + "radical": BuyMoneyAndCountSetting().get_radical_buy_setting(), + "moneys": constant.AVAILABLE_BUY_MONEYS, + "default_buy_money": constant.BUY_MONEY_PER_CODE + } + self.send_response({"code": 0, "data": data, "msg": f""}, + client_id, + request_id) + elif ctype == "set_radical_buy_block_count_setting": + # 璁剧疆涔板叆閲戦鍜屾暟閲� + data_str = data["data"] + data_str = base64.b64decode(data_str).decode('utf-8') + setting = json.loads(data_str) + RadicalBuyBlockCodeCountManager().set_block_code_count(setting) + self.send_response({"code": 0, "data": setting, "msg": f""}, + client_id, + request_id) + elif ctype == "get_radical_buy_block_count_setting": + # 璁剧疆涔板叆閲戦鍜屾暟閲� + data = RadicalBuyBlockCodeCountManager().get_block_code_count_settings() + self.send_response({"code": 0, "data": data, "msg": f""}, + client_id, + request_id) + elif ctype == "get_place_order_settings": + # 鑾峰彇涔板叆涓嬪崟璁剧疆 + data = { + "radical_buy": {"price": (constant.MIN_CODE_RADICAL_BUY_PRICE, constant.MAX_CODE_RADICAL_BUY_PRICE), + "zyltgb": constant.RADICAL_BUY_ZYLTGB_AS_YI_RANGES}} + self.send_response({"code": 0, "data": data, "msg": f""}, + client_id, + request_id) + elif ctype == "set_place_order_settings": + radical_buy = data.get("radical_buy") + if radical_buy: + radical_buy = json.loads(radical_buy) + constant.MIN_CODE_RADICAL_BUY_PRICE = radical_buy["price"][0] + constant.MAX_CODE_RADICAL_BUY_PRICE = radical_buy["price"][1] + constant.RADICAL_BUY_ZYLTGB_AS_YI_RANGES = radical_buy["zyltgb"] + self.send_response({"code": 0, "data": {}, "msg": f""}, + client_id, + request_id) + elif ctype == "get_buy_open_limit_up_codes": + # 鑾峰彇闅斿鍗曟帓1鐨勪唬鐮� + codes = gpcode_manager.BuyOpenLimitUpCodeManager().get_codes() + if not codes: + codes = set() + self.send_response({"code": 0, "data": list(codes), "msg": f""}, + client_id, + request_id) + + elif ctype == "set_buy_open_limit_up_codes": + # 璁剧疆闅斿鍗曟帓1鐨勪唬鐮� + codes = data.get("codes") + codes = json.loads(codes) + gpcode_manager.BuyOpenLimitUpCodeManager().set_codes(set(codes)) + self.send_response({"code": 0, "data": list(codes), "msg": f""}, + client_id, + request_id) except Exception as e: logging.exception(e) logger_debug.exception(e) -- Gitblit v1.8.0