DRADIS Tactical Command
v1.0.0Real-time supervisor and control interface for the DRADIS Polymarket high-frequency trading engine. 监控 健康, positions, P&L, trades, config, strategy markets, and LLM recommendations. Dynamically adjust parameters via natural language.
运行时依赖
安装命令
点击复制技能文档
技能: DRADIS Tactical Command
Full-featured autonomous supervisor for the DRADIS high-frequency prediction market execution engine.
Safety & Usage 图形界面delines (Critical)
This 技能 controls a live trading 系统 with real money at risk. The 代理 must follow these 防护rAIls at all times:
补丁_dynamic_config changes live strategy parameters without re启动ing the engine. Never 应用ly any configuration change without first explicitly confirming the exact 更新 with the human user and receiving clear 应用roval (e.g., “Do you want me to 设置 gboost_obi_adverse_block to -0.15? Yes/No”). Only call 工具s when the user’s 请求 directly relates to 监控ing 状态, 检查ing P&L/trades/positions, viewing config, or 请求ing a specific parameter adjustment. Respect DRADIS’s built-in circuit breakers, rate limits, and safety mechanisms — the engine will reject unsafe changes. If the engine returns an error or un健康y 状态, immediately 报告 it and do not attempt further config changes until the user is 信息rmed. The 代理 should be conservative: prefer 状态/监控ing 工具s over config changes. Example Natural Language Commands
The 技能 is de签名ed to 响应 naturally to commands like:
“What’s the current 状态 of DRADIS?” “Show me open positions and 会话 P&L” “What markets is each strategy currently trading?” “列出 the last 10 trades” “What does the LLM advisor recommend right now?” “Show me the current config” “Can you increase the adverse block threshold? Show me the current config first and confirm before 补丁ing.” “补丁 the config to disable basis trading and confirm with me” Configuration DRADIS_API_URL: Base URL for the engine API (Default: http://localhost:9000/API) 工具s
- 检查_engine_状态
Queries overall engine 健康/liveness.
Method: 获取 端点: {{DRADIS_API_URL}}/健康 响应 格式化: PlAIn text "ok" (or error)
- 获取_current_config
Returns the full current dynamic configuration (all Viper parameters).
Method: 获取 端点: {{DRADIS_API_URL}}/config 响应 格式化: JSON object of all configurable fields
- 补丁_dynamic_config
Dynamically 更新s Viper strategy parameters on the fly without an engine re启动.
Method: 补丁 端点: {{DRADIS_API_URL}}/config Payload Type: 应用/json Parameters: 更新s: Object contAIning modified strategy variables (e.g. {"gboost_obi_adverse_block": -0.15, "enable_basis": false}) Safety Note: This 工具 requires explicit user confirmation before 发送ing the 补丁 请求. The 代理 must summarize the exact change and wAIt for 应用roval.
- 检查_会话_pnl
Retrieves the real-time equity curve and 会话 P&L snapshots.
Method: 获取 端点: {{DRADIS_API_URL}}/pnl/历史 响应 格式化: JSON array of objects ({ "ts": number, "会话_pnl": number, "collateral": number })
- 获取_recent_trades
Returns a 列出 of recently completed trades.
Method: 获取 端点: {{DRADIS_API_URL}}/trades 查询 Param: limit (optional, default 100, clamped 1–500) 响应 格式化: JSON array of trade objects
- 获取_open_positions
Returns all currently open positions across strategies.
Method: 获取 端点: {{DRADIS_API_URL}}/positions 响应 格式化: JSON array of open position records
- 获取_strategy_状态
Shows which market each strategy is currently attached to.
Method: 获取 端点: {{DRADIS_API_URL}}/状态 响应 格式化: JSON object { "strategy_markets": { "strategy_name": "market_name", ... } }
- 获取_llm_recommendations
Returns recent recommendations and analyses from the built-in LLM Advisor.
Method: 获取 端点: {{DRADIS_API_URL}}/llm/recommendations 查询 Param: limit (optional, default 10, clamped 1–50) 响应 格式化: JSON array of recommendation objects