删除实时行情、盘口深度和监控规则功能

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-07-04 17:32:39 +08:00
parent 0474e5fb46
commit 9904854cc1
47 changed files with 107 additions and 6059 deletions
+2 -7
View File
@@ -252,8 +252,6 @@ def _recap_summary(overview: dict) -> str:
async def recap_market_stream(
repo,
quote_service=None,
depth_service=None,
as_of: date | None = None,
focus: str = "",
news: list[dict] | None = None,
@@ -262,13 +260,12 @@ async def recap_market_stream(
Args:
repo: KlineRepository(必填)。
quote_service / depth_service: 可选,数据装配依赖。
as_of: 复盘日期,None 取最新有数据日。
focus: 用户追加的复盘关注点。
news: 预检索的新闻列表(P1 不传,留 None 走降级说明;P3 由 news_search 注入)。
"""
# 1. 装配市场总览
overview = build_market_overview(repo, quote_service, depth_service, as_of)
overview = build_market_overview(repo, as_of)
as_of_str = overview.get("as_of")
if not as_of_str:
@@ -314,8 +311,6 @@ async def recap_market_stream(
async def recap_market_once(
repo,
quote_service=None,
depth_service=None,
as_of: date | None = None,
focus: str = "",
news: list[dict] | None = None,
@@ -327,7 +322,7 @@ async def recap_market_once(
"""
content_parts: list[str] = []
meta: dict = {"as_of": as_of.isoformat() if as_of else None}
async for evt in recap_market_stream(repo, quote_service, depth_service, as_of, focus, news):
async for evt in recap_market_stream(repo, as_of, focus, news):
try:
obj = json.loads(evt)
except Exception: # noqa: BLE001