源文件:research/quant_digests/2026-04-11_0945_binance-obi-quote-skew-maker-shell.md
Binance Futures 深度 OBI(order-book imbalance)z-score 先给出未来数秒 mid-price 漂移方向,再把方向优势塞进 maker quote skew 里吃 spread + drift看的是 djienne/LIGHTER_Market_Making 这份 2026 GitHub repo。它表面上是给 Lighter perp 做双边做市,但真正值得 desk 拎出来的不是“零手续费 DEX 做市”,而是更底层的 Binance 深度 OBI → maker skew:先用 Binance @depth@100ms 维护本地 order book,算 2.5% 深度内的 sum_bid_qty - sum_ask_qty,再对滚动窗口做 z-score,把它当未来几秒方向偏置,最后只用来把 bid/ask 向一边轻推,而不是裸做 directional taker。
OBI extreme -> future short-horizon drift。vol_obi 负责半价差,BinanceDiffDepthClient 提供 alpha,inventory skew 控仓,adaptive requote threshold / quota recovery / circuit breaker / stale-order poller 负责执行与风控。window_steps=6000、step_ns=100ms(约 10 分钟滚动窗),c1_ticks=20,min_half_spread=8bps,skew=3.0,alpha stale_seconds=5。BTCUSDT depth REST 做了一个 180 秒、1 秒采样的缩尺 proxy probe:alpha_z 与未来 1s 收益的相关约 0.22;按 top/bottom 20% bucket 看,最高 OBI 桶未来 1s/3s/5s 原始 mid return 约 +0.04 / +0.08 / +0.12 bps,最低桶约 -0.07 / -0.21 / -0.35 bps,high-low 5s spread ≈ +0.47 bps。这说明 OBI 更像 maker skew admission,而不是单独拿去做 5m 裸方向单。这条线和当前 desk 直接相关,因为它补的不是又一个“15m 形态故事”,而是 更快、更底层、可给多个 alpha 共用的 execution-aware raw alpha 组件:
1m/3m:它本身就可以做 maker alpha;5m/15m:它可以当 entry veto / quote-side bias / child execution router,决定顺着信号挂哪边、哪边缩量、哪边暂停;alpha / execution / inventory / safety 四层拆得很清楚,适合后续单独迁移进我们自己的微观结构实验框架。depth imbalance z-score -> next-few-second signed drift研究假设:Binance 顶层到浅层深度的 OBI 极值,能在 1s~10s 内给出足够稳定的 drift,值得用来给 maker quote 做单边偏置。
最小定义:
BTC/ETH/SOL 的 depth@100ms 或至少 1s depth snapshot;imbalance_t = bid_qty(within 2.5%) - ask_qty(within 2.5%);60s / 300s / 600s 滚动窗算 z_t;z_t > z* 时,把 bid 抬高/ask 也抬高(偏多);z_t < -z* 时反向;min_half_spread 1~4 ticks、inventory cap、5~30s timeout。最该先看:
fill-adjusted net bps(扣 maker fee / rebate 后)adverse selection(成交后 1s/3s/5s markout)如果这两项不过关,就说明 OBI 只够当 veto / skew,不够独立成策略。
@depth@100ms + 本地簿,所以只能说明“方向性没死”,不能说明 production edge 大小。1m/3m,硬拉到 5m/15m 做主方向会稀释信息密度。https://github.com/djienne/LIGHTER_Market_MakingREADME.md、market_maker_v2.py、binance_obi.py、vol_obi.py、config.jsonhttps://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Order-Bookreports/artifacts/literature/lighter_obi_probe_detail_2026-04-11.csvreports/artifacts/literature/lighter_obi_probe_summary_2026-04-11.csv