d6823a2903
Position and order forms can arm a target; right-side and hub panels show active monitors; expiry remains the stop with no separate SL. Co-authored-by: Cursor <cursoragent@cursor.com>
79 lines
3.0 KiB
Python
79 lines
3.0 KiB
Python
"""中控只读聚合:OKX 期权持仓 / 资金 / 本地统计."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from lib.options.options_history_lib import load_options_history
|
|
from lib.options.options_stats_lib import compute_options_stats_from_history
|
|
|
|
|
|
def _compute_options_stats(ex, cfg) -> dict[str, Any]:
|
|
history = load_options_history(ex, cfg)
|
|
return compute_options_stats_from_history(history)
|
|
|
|
|
|
def build_options_hub_snapshot(cfg: dict[str, Any]) -> dict[str, Any]:
|
|
if not cfg.get("enabled"):
|
|
return {"ok": True, "enabled": False}
|
|
ex = cfg.get("exchange_options")
|
|
ready_fn = cfg.get("options_api_ready")
|
|
if not callable(ready_fn):
|
|
return {"ok": False, "enabled": True, "msg": "期权模块未就绪"}
|
|
ok, reason = ready_fn(ex)
|
|
if not ok:
|
|
return {"ok": False, "enabled": True, "msg": reason or "期权 API 未配置"}
|
|
try:
|
|
from lib.options.options_positions_lib import build_display_option_positions
|
|
|
|
raw = cfg["fetch_option_positions"](ex)
|
|
if raw is None:
|
|
return {"ok": False, "enabled": True, "msg": "获取期权持仓失败"}
|
|
positions = build_display_option_positions(cfg, ex, raw)
|
|
target_monitors: list[dict[str, Any]] = []
|
|
try:
|
|
conn = cfg["get_db"]()
|
|
try:
|
|
from lib.options.options_target_lib import list_active_targets, targets_by_inst
|
|
|
|
target_monitors = list_active_targets(conn)
|
|
tgt_map = targets_by_inst(conn)
|
|
for p in positions:
|
|
mon = tgt_map.get(str(p.get("inst_id") or ""))
|
|
if mon:
|
|
p["target_index"] = mon.get("target_index")
|
|
p["target_monitor_id"] = mon.get("id")
|
|
p["target_monitor"] = mon
|
|
finally:
|
|
conn.close()
|
|
except Exception:
|
|
target_monitors = []
|
|
upl_total = 0.0
|
|
has_upl = False
|
|
for p in positions:
|
|
upl = p.get("upl")
|
|
if upl is None:
|
|
continue
|
|
has_upl = True
|
|
upl_total += float(upl)
|
|
bal = cfg["fetch_options_balances"](ex)
|
|
stats = _compute_options_stats(ex, cfg)
|
|
return {
|
|
"ok": True,
|
|
"enabled": True,
|
|
"positions": positions,
|
|
"position_count": len(positions),
|
|
"target_monitors": target_monitors,
|
|
"upl_total_usdc": round(upl_total, 4) if has_upl else None,
|
|
"balances": bal,
|
|
"funding_usdc": bal.get("funding_usdc"),
|
|
"funding_usdt": bal.get("funding_usdt"),
|
|
"trading_usdc": bal.get("trading_usdc"),
|
|
"trading_usdt": bal.get("trading_usdt"),
|
|
"stats": stats,
|
|
"trade_budget": cfg.get("trade_budget"),
|
|
"account_label": cfg.get("account_label") or "OKX期权",
|
|
}
|
|
except Exception as e:
|
|
return {"ok": False, "enabled": True, "msg": str(e)}
|