ソースを参照

docs: outline extreme micro-grid and multi-account rollout

helium3@sina.com 2 ヶ月 前
コミット
56f9312f32
2 ファイル変更9 行追加0 行削除
  1. 5 0
      docs/CONFIG_REFERENCE.md
  2. 4 0
      docs/IMPLEMENTATION_PLAN.md

+ 5 - 0
docs/CONFIG_REFERENCE.md

@@ -127,6 +127,11 @@ grid:
 
 > 🎯 **推荐起始配置**:参考 `config/grid.example.yaml`,适用于测试网或小额实盘。根据账户规模调整 `base_clip_usd` 与 `hedge_threshold_base`,并保持 `max_base_abs ≥ hedge_threshold_base × 1.5` 以预留缓冲。
 
+> ⚠️ **极限贴盘口模式(实验)**:将 `grid_step_bps` / `adaptive.min_grid_step_bps` 压到 1–2 bps、`post_only_cushion_bps` 调至 0–1 bps 并配合 `min_layers ≥ 10` 可实现“微网格”密集挂单。此时务必:
+> - 同步降低 `tick_interval_ms`、`min_step_change_ratio` 并启用批次节流,避免一次 burst 触发交易所限频。  
+> - 若采用多账户部署(如内圈账号专门贴盘口,外圈账号铺外围档位),请在配置中为每个实例分配独立 `account_id` 并在风控参数中放宽对应账户的 `max_base_abs`。  
+> - 预先在测试环境验证 post-only 成功率与 RPC 延迟,再逐步推广至实盘。
+
 ---
 
 ## 6. 剥头皮策略 (`scalper`)

+ 4 - 0
docs/IMPLEMENTATION_PLAN.md

@@ -98,3 +98,7 @@ This document consolidates the product requirements, technical architecture, and
   - 新增实例级指标:`grid_active_orders`, `grid_pending_levels`, `grid_incremental_rate`, `order_gateway_queue_depth`, `stp_conflicts`.  
   - 定义告警:连续多个 tick `pending_levels>0`、`placement_latency_p95>5s` 或实例重试超限时触发降级(回退全量模式或暂停实例)。  
   - 更新运维剧本,覆盖多实例启停、动态扩缩容、手动降级/恢复、以及在增量模式失败时的回滚步骤。
+- **Ultra-tight micro-grid configuration**  
+  - 研究低至 1–2 bps 的步长与 0–1 bps `post_only_cushion_bps` 组合对限流及 post-only 成功率的影响,配合多账户实例进行分层部署。  
+  - 为极端贴盘口模式制定节流/批次下单策略(降低 burst、引入异步确认),并提供回滚配置模板(如 `micro_grid_extreme.yaml`)。  
+  - 输出风控指引:如何在多账户环境下分配层级(内圈账号、外圈账号),以及极限模式下的 delta/对冲阈值调优建议。