一键导入
mm-bot-report
Run the MM bot status report: running bots, open/hold-mode positions, closed position breakdown (TP/SL/Early/Hold), PnL, volume, and error summary.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run the MM bot status report: running bots, open/hold-mode positions, closed position breakdown (TP/SL/Early/Hold), PnL, volume, and error summary.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
How total_amount_quote and initial_positions define a controller's isolated capital — the budget a single pmm_mister controller trades with, and how to seed it with base assets you already hold so each controller is independent from the wider portfolio.
Ready-to-deploy pmm_mister config profiles (aggressive / balanced / conservative) — full parameter coverage including spreads, effectivization times, tolerance, order types, skew, and global TP/SL.
End-to-end playbook for deploying a pmm_mister bot on a token — regime analysis, profile selection, config creation, and bot deployment.
On hyperliquid_perpetual, tokenized perp contracts (equities/pre-IPO names like SPCX-USD) are issued by a provider and require an issuer prefix in the trading pair (e.g. XYZ:SPCX-USD, not SPCX-USD).
Create and operate autonomous trading agents the minimal way — create the agent from just its role + purpose, prove it's alive by consulting it, then progressively improve it with routines and (optionally) a loop strategy.
The single reference for writing Condor routines — fetching Hummingbot data, parallel calls, reports/charts, continuous loops, and candlestick charts. Routes to a companion file per topic.
| name | mm_bot_report |
| description | Run the MM bot status report: running bots, open/hold-mode positions, closed position breakdown (TP/SL/Early/Hold), PnL, volume, and error summary. |
| when_to_use | When the user asks for a bot status report, "how is the bot doing", "show me the report", "what's the PnL", "any errors", "how are positions", "closed positions breakdown", or any general health/status check on the running MM bots. Also use after deploying a new bot to verify it's running correctly. |
| created | 2026-07-02T15:46:08Z |
| source | agent:market_making_expert |
| references_routine | mm_bot_report |
Run the mm_bot_report routine — it fetches everything in one shot:
manage_routines(action="run", name="mm_bot_report", config={})
What it returns:
is_trading=True)is_trading=False)Config overrides (pass as config={} keys):
trading_pair — filter to one pair (default: all)connector_name — filter to one connector (default: all)recent_closes — how many closed executors to analyze (default: 100)include_errors — set false to skip error log fetch (default: true)After reading the output:
manage_routines(action="run", name="logs_summary") (global routine).