From ad615df734b4d82f9a83a7d1805ac9fabdf01a53 Mon Sep 17 00:00:00 2001 From: Administrator <admin@example.com> Date: 星期四, 21 八月 2025 18:27:39 +0800 Subject: [PATCH] 200元股价以下的不足4手算4手/撤单率设置为100%不计算L后后半段撤单 --- api/outside_api_command_callback.py | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/api/outside_api_command_callback.py b/api/outside_api_command_callback.py index e5da722..6c1a734 100644 --- a/api/outside_api_command_callback.py +++ b/api/outside_api_command_callback.py @@ -1586,6 +1586,14 @@ self.send_response({"code": 0, "data": {}}, client_id, request_id) + elif ctype == "remove_l_down_rate": + # 鍒犻櫎L鍚庢挙鍗曟瘮渚� + code = data.get("code") + CancelRateHumanSettingManager().remove_l_down(code) + trade_record_log_util.add_common_msg(code, "鍒犻櫎L鍚庨璁炬瘮渚�") + self.send_response({"code": 0, "data": {}}, + client_id, + request_id) elif ctype == "get_continue_buy_info": # 璁剧疆L鍚庢挙鍗曟瘮渚� -- Gitblit v1.8.0