oopslink/trading-skills
GitHub用于配置tushare-cli令牌、选择输出格式及概览A股数据查询技能。支持JSON/CSV输出、缓存及日期代码规范,并列出个股、指数、概念、财务等领域的专用查询工具。
安装全部 Skills
npx skills add oopslink/trading-skills --all -g -y
更多选项
预览集合内 Skills
npx skills add oopslink/trading-skills --list
集合内 Skills (3)
skills/tushare-query/SKILL.md
npx skills add oopslink/trading-skills --skill tushare-query -g -y
SKILL.md
Frontmatter
{
"name": "tushare-query",
"description": "Use when setting up tushare-cli token, choosing output formats, or getting an overview of available A-share market data query skills"
}
tushare-query: Setup & Overview
Token Setup
tushare-cli config set-token <YOUR_TOKEN>
# or: export TUSHARE_TOKEN=<token>
Common Flags
| Flag | Effect |
|---|---|
--format json |
JSON output (pipe to jq) |
--format csv |
CSV output (redirect to file) |
--cache |
Cache result within session |
Format Tips
- Date: always
YYYYMMDD(e.g.,20240201) - ts_code:
XXXXXX.SZShenzhen ·XXXXXX.SHShanghai ·XXXXXX.SIShenwan index - Best combo:
--format json | jq 'sort_by(-.pct_chg) | .[:10]'
Skills by Domain
| Domain | Skill |
|---|---|
| Individual stocks, ETF, capital flow | tushare-stock |
| Shenwan index, sector constituents | tushare-index |
| Concept boards, volume anomaly | tushare-concepts |
| Sector rotation & ranking | tushare-alpha |
| Financial statements | tushare-financial |
| Futures contracts & holdings | tushare-futures |
| Forex rates | tushare-forex |
skills/miniqmt-cli/SKILL.md
npx skills add oopslink/trading-skills --skill miniqmt-cli -g -y
SKILL.md
Frontmatter
{
"name": "miniqmt-cli",
"description": "Operate miniQMT\/xtquant via the miniqmt-cli tool -- market data queries, real-time streaming, account management, order placement with safety guards, daemon health checks, SSH tunnel management, and deployment to Windows. Use this skill whenever the user mentions miniqmt, miniQMT, xtquant, QMT trading, placing stock orders via CLI, checking positions or assets on a QMT account, streaming ticks or klines from QMT, deploying the trading daemon, or troubleshooting the miniqmt-cli daemon. Also use when the user asks about A-share programmatic trading via a CLI daemon architecture."
}
miniqmt-cli: Drive miniQMT / xtquant from the Command Line
Access Policy — read first
All programmatic access to the trading daemon MUST go through miniqmt-cli. Direct HTTP calls to http://127.0.0.1:8765/... are no longer a supported integration surface — the URL space, payload shapes, and error semantics are internal implementation details and may change without notice.
Reasons:
- One source of truth. The CLI's command set is the only documented API. The HTTP routes underneath exist solely to let the CLI talk to the daemon over an SSH tunnel; their paths are unstable.
- Drift kills callers. When a parallel HTTP reference existed, a polling agent followed a stale
/positions//orders//trades(unprefixed) path and silently 404'd for hours. The CLI shields callers from this class of bug. - Safety pipeline. The CLI carries the masking, idempotency client_req_id generation, and
--confirm-livehandshake conventions. Bypassing it weakens those guarantees even though the daemon enforces most of them.
Callers from non-Python runtimes should wrap the CLI as a subprocess (subprocess.run(["miniqmt-cli", "account", "asset", "--account", "main", "--format", "json"], capture_output=True)) rather than constructing HTTP requests by hand. SSE consumers should use miniqmt-cli stream tick|kline|order ... and parse its stdout, not subscribe to /stream/* directly.
If you're an agent on a different host than the daemon, configure remote mode in ~/.miniqmt_cli/client.toml:
[client]
mode = "remote"
server_url = "http://127.0.0.1:8765" # the daemon, via SSH tunnel
Then bring up the tunnel (see SSH Tunnel below). The CLI then works transparently — no proxy config needed.
Architecture
Mac CLI (Click) --> SSH tunnel --> Windows FastAPI daemon (port 8765) --> xtquant/miniQMT
- Client (Mac):
~/.miniqmt_cli/client.toml-- sends HTTP requests through an SSH tunnel - Server (Windows):
~/.miniqmt_cli/server.toml-- FastAPI daemon wrapping xtquant, runs as a Scheduled Task - Communication: all commands hit
http://127.0.0.1:8765viassh -N -L 8765:127.0.0.1:8765 <host>
Prerequisites
Before running any command, verify:
- SSH tunnel is up -- without it, all commands fail with "cannot reach daemon"
- Daemon is running on Windows -- check with
miniqmt-cli health - miniQMT client is open on Windows -- required for xtquant to connect to the broker
/health response shape
Two independent top-level blocks. There is no flat state enum — callers
compose decisions from the structured fields. (The old composite strings like
daemon_up_no_trader mixed two unrelated concerns into one name and have
been removed.)
{
"daemon": {
"state": "up", // up | degraded
"xtquant_loaded": true,
"xtquant_error": "..." // present only when state == degraded
},
"accounts": {
"main": {
"trader": {
"state": "alive", // never_connected | alive | lost
"last_connect_at": "2026-05-13T09:30:01Z",
"last_disconnect_at": null
},
"risk_breaker": "ok", // ok | tripped
"baseline": "captured" // captured | pending
}
}
}
Scope of each field:
daemon.stateis purely process-local: this Python process is up + xtquant module loaded. It says nothing about miniQMT or the broker.accounts.<name>.trader.statereflects what the daemon last heard on the xtquant SDK channel —aliveafter a successful login,lostafter xtquant fireson_disconnected. The daemon cannot independently probe miniQMT's GUI or broker connectivity, so alostflag is a positive signal (SDK told us the channel dropped), but a stalealiveflag is not a guarantee the channel is currently up. The only definitive liveness probe is to run an account command — a real broker failure surfaces astrader.connect failed rc=...ortrader.subscribe failed rc=....risk_breakerandbaselineare computed from the daemon's risk manager.- When the daemon was started with
serve --dry-run, thedaemonblock adds"dry_run": trueandxtquant_loadedis forced tofalse(xtquant is never touched in that mode). All account commands raise; this mode is for offline development only.
Reading rules of thumb:
| You want to know… | Read… |
|---|---|
| Daemon process alive? | daemon.state == "up" |
| xtquant loadable? | daemon.xtquant_loaded == true |
| Trader session for an account dropped? | accounts.<name>.trader.state == "lost" |
| When did it drop / when did it last connect? | accounts.<name>.trader.last_disconnect_at / last_connect_at |
| Account safe to send orders? | daemon.state == "up" AND accounts.<name>.trader.state == "alive" AND accounts.<name>.risk_breaker == "ok" AND accounts.<name>.baseline == "captured" |
| Account has never tried to log in (fresh daemon)? | accounts.<name>.trader.state == "never_connected" — run any account command to trigger lazy login |
miniqmt-cli health prints a human summary of this body. Exit code rules:
- Exit 1 when any of these are true: daemon unreachable (
cannot reach daemon …);daemon.state != "up"(e.g. xtquant failed to load); anyaccounts.<name>.trader.state == "lost"; anyaccounts.<name>.risk_breaker == "tripped"; anyaccounts.<name>.baseline == "pending"while that account's trader isalive. - Exit 0 otherwise. In particular, a fresh daemon where every account is
never_connectedexits 0 — that's the normal lazy-load state, not an error.
Global Options
miniqmt-cli [--format table|json|csv] [--config <path>] <command>
Default format comes from client.toml; override per-call with --format.
Commands Reference
Market Data
# List sectors (e.g. 沪深A股, 上证50)
miniqmt-cli sector list
# List instruments in a sector
miniqmt-cli instrument list --sector "沪深A股"
miniqmt-cli instrument list --limit 10
# Instrument detail
miniqmt-cli instrument info --code 000001.SZ
# Latest tick snapshot (supports multiple codes)
miniqmt-cli tick --code 000001.SZ --code 600519.SH
# Historical K-line (periods: 1d, 1m, 5m)
miniqmt-cli kline --code 000001.SZ --period 1d --start 20260101 --end 20260415
# Historical ticks (raw tick-by-tick data)
miniqmt-cli ticks --code 000001.SZ --start 20260415093000 --end 20260415100000
Real-time Streaming (SSE)
Streams run until Ctrl+C. Output is one event per line; use --format json for programmatic consumption (the table format is for ad-hoc inspection).
Known failure mode: xtquant snapshot cache wedge. The timetag field of xtdata.get_full_tick() can lock at a past value while lastPrice / bidVol / askVol continue updating normally. Observed 2026-05-18: four codes (600760.SH / 600011.SH / 000333.SZ / 002179.SZ) all locked at timetag=20260518 09:32:06 for 13 minutes, daemon process otherwise healthy, watchdog silent, all HTTP requests returning 200, trader=alive. The daemon is a pure pass-through to xtquant — grep timetag across the daemon source returns zero hits — so the wedge lives inside xtquant's process-internal snapshot cache, not in daemon code.
Empirically supported trigger: daemon uptime crossing a market-close boundary. Access-log analysis of the 5/18 incident window (09:20–09:59) showed zero stream tick activity from any client, stable ~150 req/min on /trade/* polling, zero non-200 responses, zero WARN/ERROR lines. The only standing variable was a 64-hour daemon uptime that had spanned the weekend close. Best fit: xtquant's internal timetag write path has weak day-rollover handling. An earlier hypothesis that short-lived stream tick subscribe/unsubscribe cycles trigger the wedge is not supported by the logs and should not be relied on.
Primary mitigation: nightly daemon restart on trading days. scripts/windows/bootstrap.ps1 registers a MiniqmtDaemonNightlyRestart Scheduled Task that runs scripts/windows/nightly-restart.ps1 at 08:50 Mon-Fri — one known-clean xtquant process per day eliminates the cross-close failure mode. Polling via /data/tick reads the same xtquant cache that stream tick populates, so polling does not recover a wedged cache — only a daemon restart does.
When to use stream tick vs tick polling. Persistent stream tick is the recommended consumer pattern (lower latency than respawning miniqmt-cli tick per evaluation, no subprocess startup cost). One subscription per consumer process for the whole trading day; do not subscribe/unsubscribe per evaluation. This is a performance/ergonomics recommendation — it does not by itself prevent the wedge above; pair it with the nightly restart.
Tick stream
# Interactive (Ctrl+C to stop)
miniqmt-cli stream tick --code 000001.SZ --code 600519.SH
# Programmatic consumption
miniqmt-cli --format json stream tick --code 000001.SZ --code 600519.SH
Event payload (JSON mode). First line is the subscription envelope; subsequent lines each wrap one tick event. Codes that do not tick in an interval emit nothing for that interval.
{"event": "subscribed", "codes": ["000001.SZ"], "seqs": [42]}
{"tick": {"code": "000001.SZ", "timetag": "20260518 09:32:06", "lastPrice": 10.48,
"high": 10.52, "low": 10.41, "open": 10.45, "lastClose": 10.40,
"volume": 12345, "amount": 128943.50,
"bidPrice": [10.47, 10.46, 10.45, 10.44, 10.43],
"askPrice": [10.48, 10.49, 10.50, 10.51, 10.52],
"bidVol": [100, 200, 300, 400, 500],
"askVol": [150, 250, 350, 450, 550]}}
{"tick": {...}, "dropped": 3}
event: subscribedarrives exactly once at stream start — consumers must skip it before processing ticks.dropped: Nappears alongside atickwhen the daemon's per-stream queue overflowed since the last emit (cap = 256). The dropped events are the oldest; the emittedtickis the freshest. Log it as a backpressure warning, not an error — it means your consumer is slower than the broker pushes.- Field set varies by xtquant SDK version.
code,timetag,lastPrice,high,low,bidVol,askVolare present on standard A-share L1 feeds; anything else is best-effort. timetagis a"YYYYMMDD HH:MM:SS"string; parse before using as a sort key. If you seetimetagstatic while other fields advance, you've hit the cache wedge — restart the daemon.
Consuming stream tick from a long-running subprocess. The boring details that bite:
bufsize=1+env={..., "PYTHONUNBUFFERED": "1"}onPopen. Without both, Python's stdio block-buffers the daemon's per-line output into ~4 KB chunks; consumers see silent stretches where ticks have been emitted but are stuck in the pipe.- Drain
stderrin a separate thread.miniqmt-clirarely writes to stderr, but if the pipe buffer fills (tens of KB) the subprocess blocks onwrite(stderr)and the tick stream goes silent without any visible error. - No SSE keepalive from the daemon. During a quiet stretch the daemon emits no bytes — a wedged daemon and a quiet market look identical on the wire. Consumers MUST run their own stale watcher: if no tick has arrived for N seconds in trading hours (~30s for liquid watchlists), kill the subprocess and reconnect. Trigger on "no event from ANY watched code" rather than per-code so a single illiquid name doesn't false-positive.
- Reconnect with exponential backoff (1s → 30s cap). SSH-tunnel blips and daemon restarts will close the SSE stream; resetting backoff after one successful tick keeps reconnects fast in steady state.
- SIGTERM bypasses the CLI's
finallyblock.miniqmt-cli stream tickonly reaches its unsubscribe path onKeyboardInterrupt(SIGINT). For long-running consumers this is intentional — not unsubscribing avoids the cache wedge above. Use SIGINT only when you actually want a clean unsubscribe (testing/debug); for normal restart, SIGTERM is fine. - The tick callback must be near-instant. Block the read loop and the daemon's per-stream queue (cap 256) fills, you start seeing
dropped: N, and the freshest tick is all you get. Push ticks to a worker queue immediately; evaluate strategies elsewhere.
Kline stream
miniqmt-cli stream kline --code 000001.SZ --period 1m
Each event wraps one bar: {"bar": {"code": ..., "time": ..., "open": ..., "high": ..., "low": ..., "close": ..., "volume": ...}}. The daemon coalesces by (code, bar_start_ts) and yields only the latest bar per key, so a slow consumer never sees duplicate stale bars.
Order stream
# Stream order lifecycle events (submitted / partially filled / filled / cancelled / rejected)
# Essential for agents: subscribe before placing an order, then consume fill/reject events.
miniqmt-cli stream order --account sim
# JSON format for programmatic parsing
miniqmt-cli --format json stream order --account sim
Event payload shape (JSON mode). The first line after subscription is an envelope, then each order state change emits an order_status dict:
{"event": "subscribed", "filter_account": "sim"}
{"type": "order_status", "account": "sim", "order_id": 12345, "code": "000001.SZ",
"side": "buy", "status": "filled", "volume": 100, "filled_volume": 100,
"avg_price": 10.48, "frozen": 0.0}
Also emitted on the same stream: {"type": "order_response", ...} (async submit ack) and {"type": "trade", ..., "trade_id": ..., "price": ..., "amount": ...} (per-fill detail).
Possible status values (from xtquant order_status): submitted, confirmed, partially_filled, filled, cancelled, rejected, expired, pending_cancel, unknown. Unknown codes are returned as unknown_<n> — agents should have a default branch.
Account & Portfolio
# List configured accounts (names + masked IDs)
miniqmt-cli account list
# Query account asset (cash, total, frozen)
miniqmt-cli account asset --account sim
# Query positions
miniqmt-cli account position --account sim
# Today's orders
miniqmt-cli account orders --account sim
# Today's trades (fills)
miniqmt-cli account trades --account sim
Trading (Three-Layer Safety)
Terminology — "live account" (实盘账户): Any account with
requires_confirm_live = trueinserver.toml. This is a property, not an account name. Set tofalsefor sim/paper accounts. In the examples below,simis a paper account andrealis a live account.Where
--confirm-live <last-4-digits-of-account_id>is required on live accounts (current behavior):
Command --confirm-liverequired on live?Enforced by order buy/order sell(incl.--dry-run)Yes CLI ( order.py) + daemon (/trade/order)risk resetYes CLI ( risk.py) + daemon (/risk/reset)order cancelNo — the CLI command has no --confirm-liveflag and/trade/canceldoes not re-check the live gate. Cancels are still gated by the daemon account whitelist.—
Orders go through three independent safety checks:
- CLI layer:
--dry-runpreview, interactive "yes" confirmation,--confirm-livedigit match - Daemon layer: account whitelist, live-gate re-verification, idempotency dedup
- Audit layer: every order logged to
~/.miniqmt_cli/orders.jsonlwith pre/post phases
# Buy -- preview only (no order sent)
miniqmt-cli order buy --account sim --code 000001.SZ --volume 100 --price 10.50 --dry-run
# Buy -- with interactive confirmation
miniqmt-cli order buy --account sim --code 000001.SZ --volume 100 --price 10.50
# Buy -- skip confirmation (scripting)
miniqmt-cli order buy --account sim --code 000001.SZ --volume 100 --price 10.50 --yes
# Sell
miniqmt-cli order sell --account sim --code 000001.SZ --volume 100 --price 11.00 --yes
# Live (real-money) account requires last-4-digit verification
miniqmt-cli order buy --account real --code 000001.SZ --volume 100 --price 10.50 --confirm-live 1234
# Cancel an order
miniqmt-cli order cancel --account sim --order-id 12345 --yes
Order types: --type limit (default) or --type market.
Complete Trading Workflow (agent-facing)
Follow these steps in order. Each step has a purpose — skipping is how agents end up with "order placed, no idea what happened".
1. Pre-flight health — probe real connectivity, not just /health.
/health showing accounts.<name>.trader.state == "never_connected" is normal on a fresh daemon and is NOT a login failure (see the Prerequisites section). To confirm the account is actually usable, hit a trader-touching endpoint:
miniqmt-cli --format json account asset --account sim
Success (cash / total_asset numeric) proves: daemon up → xtquant loaded → trader connected → account subscribed. After this, accounts.<name>.trader.state flips to alive and baseline to captured.
If this fails with trader.connect failed rc=... or trader.subscribe failed rc=..., stop — investigate before sending any order.
2. Check risk state.
miniqmt-cli --format json risk status --account sim
If breaker_tripped: true, opening orders will be rejected at the daemon layer regardless of CLI confirmations. Closing trades and cancels still work. Resolve with risk reset (requires a --note) before opening.
3. Preview first (dry run).
miniqmt-cli order buy --account sim --code 000001.SZ --volume 100 --price 10.50 --dry-run
Dry-run hits /trade/preview (no order sent), shows masked account id, last price, and estimated cost. Exit code 3 (GuardExit: "dry-run: order not sent") is the success path. Agents should read the preview numbers to catch typos (volume unit is shares not lots; price is yuan per share).
4. Place the order, wait for a terminal status in one call.
miniqmt-cli --format json order buy --account sim --code 000001.SZ \
--volume 100 --price 10.50 --yes --wait 30
--wait N blocks up to N seconds after the POST returns, subscribing to /stream/order and waiting for a terminal status (filled / cancelled / rejected) on the returned seq. The subscription happens after submit, so fast fills can theoretically race — in practice miniQMT fills take enough time that --wait catches them, but early lifecycle events (submitted, confirmed) may be missed. For zero-loss event capture, use the separate subscribe/place pattern below.
- The JSON response carries
{"seq": <order_id>, "status": "ok"|"rejected", "client_req_id": ...}. Persistseq— you need it to cancel or to correlate stream events. client_req_idis a UUID the CLI auto-generates for idempotency. Re-submitting with the same id within the TTL window returns the original response with"idempotent_hit": trueinstead of placing a duplicate.- Note on
--format jsonoutput: the order command still prints human-readable preview lines (Account:,Code:,Side:, etc.) to stdout before the final JSON line. Parsers must read the last line, e.g.... | tail -1 | jq -r '.seq'.
If you want to run the submit and the event loop separately (e.g. long-running agent) to avoid missing early events:
# Terminal A — subscribe BEFORE placing the order
miniqmt-cli --format json stream order --account sim > events.jsonl &
# Terminal B — place the order, capture seq from the JSON response (last line)
SEQ=$(miniqmt-cli --format json order buy --account sim --code 000001.SZ \
--volume 100 --price 10.50 --yes | tail -1 | jq -r '.seq')
# Watch events.jsonl for order_status where order_id == $SEQ
Subscribing before placing is the only way to guarantee you see the full lifecycle (submitted → confirmed → filled). If the stream subscriber is registered after the daemon has already dispatched an event, that event is lost for this subscriber (the daemon fans out only to currently-registered subscribers; see session.py dispatch_order_event).
5. Verify the outcome.
miniqmt-cli account orders --account sim # all of today's orders
miniqmt-cli account trades --account sim # all of today's fills
miniqmt-cli account position --account sim # current positions
The broker is the source of truth, not the stream. If a stream event is missed (connection blip, subscriber queue overflow — drops are logged server-side), these queries reconcile.
Cancelling
Know which scenario you're in before cancelling:
| Order state | Can cancel? | What happens |
|---|---|---|
submitted / confirmed (unfilled) |
Yes | Full cancel; status → cancelled |
partially_filled |
Yes | Cancels the remaining unfilled portion only; already-filled shares stay |
filled / cancelled / rejected |
No | Broker will reject the cancel |
Cancel takes the same form for sim and live accounts — the CLI has no --confirm-live flag on cancel (see the Terminology table above for the full matrix). Whitelist enforcement still happens at the daemon layer.
miniqmt-cli order cancel --account sim --order-id 12345 --yes
miniqmt-cli order cancel --account real --order-id 12345 --yes
# JSON output for scripting
miniqmt-cli --format json order cancel --account sim --order-id 12345 --yes
Cancel flow:
- Get
order-idfrom the place response (seqfield) or fromaccount orders. - POST
/trade/cancelreturns{"status": "ok", "seq": <cancel_seq>}synchronously — this is the submit ack, not confirmation the order is cancelled. - Watch
/stream/orderfororder_statuswhereorder_id == <original order_id>andstatus == "cancelled". The actual cancel can take a moment, and the broker may reject if the order filled first. - Reconcile with
account ordersif you need certainty.
Cancels are also idempotent via client_req_id (CLI auto-generates). Re-running the same cancel command without changes creates a new client_req_id, so it will hit the broker again — use the HTTP API with a stable client_req_id if you need true idempotency across retries.
Error Handling
| Exit | Python class | Meaning | Agent action |
|---|---|---|---|
| 0 | — | Success | Proceed |
| 2 | BrokerReject |
Broker refused the order (out of hours, insufficient balance, price band, halted stock, etc.) | Read message, fix input, don't blindly retry |
| 3 | GuardExit |
Safety guard refused: --dry-run, user declined "yes", missing/wrong --confirm-live |
Expected for --dry-run; otherwise fix flags |
| 1 | generic | Network error, timeout, unknown failure | Check tunnel / daemon health, then retry |
Risk rejections come back as HTTP 400 with body {"error": "risk_reject", "code": "<limit_name>", "message": "..."} — in CLI they surface as exit 1 with the message. Agents using HTTP directly should branch on code (e.g. max_daily_loss, max_position_pct, max_orders_per_minute).
Risk Control
The daemon enforces risk limits independently (v0.2.0+). When a limit trips, the breaker enters block-open-allow-close mode: new opening orders are rejected, but closing / cancel operations still work.
# Show risk status for one account (baseline, PnL, breaker state, pending orders)
miniqmt-cli risk status --account sim
# Show all accounts
miniqmt-cli risk status
# JSON for agents
miniqmt-cli --format json risk status --account sim
# Reset the breaker (operator action — requires a justification note)
miniqmt-cli risk reset --account sim --note "false positive: baseline re-captured"
# Live (real-money) account reset requires last-4-digit confirmation
miniqmt-cli risk reset --account real --note "manual unfreeze" --confirm-live 1234
risk status fields of interest:
| Field | Meaning |
|---|---|
baseline_total_asset |
Opening snapshot asset at session start |
baseline_imprecise |
true if baseline was captured after first trade (less reliable) |
current_total_asset |
Latest cached asset |
daily_pnl |
current - baseline |
breaker_tripped |
Boolean — if true, breaker_reason explains which limit |
pending_orders |
Map of code -> {buy_volume, buy_amount, sell_volume, sell_amount} |
orders_in_window |
Count of orders in the rolling 60s frequency window |
server.toml [risk] defaults:
[risk]
enabled = true
max_daily_loss = 50000 # yuan
max_position_pct = 30 # % of total asset per single stock
max_orders_per_minute = 10
max_positions = 10
Per-account overrides live in [accounts.<name>.risk].
Daemon Management
# Check versions (local + remote)
miniqmt-cli version
# Health check
miniqmt-cli health
# Start daemon locally on Windows (normally managed by Scheduled Task)
miniqmt-cli serve [--host 127.0.0.1] [--port 8765] [--dry-run]
Configuration
# Client config
miniqmt-cli config client init # Create template ~/.miniqmt_cli/client.toml
miniqmt-cli config client show # Print resolved config
miniqmt-cli config client set-server-url http://127.0.0.1:8765
# Server config (run on Windows)
miniqmt-cli config server init # Create template ~/.miniqmt_cli/server.toml
miniqmt-cli config server show # Print config (account IDs masked)
Deployment (Mac to Windows)
The setup wizard walks through 9 steps: parameters, client.toml, SSH check, remote Python, Windows service registration, server.toml, code deploy, SSH tunnel, smoke test.
# Full wizard (idempotent, remembers progress)
miniqmt-cli setup
# Re-run a specific step (1-9)
miniqmt-cli setup --step 9
# Start fresh
miniqmt-cli setup --reset
For day-to-day code updates after initial setup:
# Deploy script (uses env from wizard state)
WIN_HOST=<user>@<windows-host> WIN_REPO=C:/apps/trading-skills bash scripts/deploy.sh
Restart the daemon on Windows:
ssh <user>@<windows-host> "schtasks /run /tn MiniqmtDaemon"
SSH Tunnel
The tunnel is the lifeline between Mac CLI and Windows daemon.
# Manual tunnel (foreground)
ssh -N -L 8765:127.0.0.1:8765 <user>@<windows-host>
# Persistent tunnel via autossh + launchd (setup wizard can generate the plist)
launchctl load ~/Library/LaunchAgents/com.miniqmt.tunnel.plist
Config File Reference
client.toml (~/.miniqmt_cli/client.toml)
[client]
mode = "auto" # auto | local | remote
server_url = "http://127.0.0.1:8765" # required when mode = remote
[client.output]
format = "table"
Env overrides: MINIQMT_CLI_MODE, MINIQMT_CLI_SERVER_URL, MINIQMT_CLI_FORMAT
server.toml (~/.miniqmt_cli/server.toml, on Windows)
[server]
host = "127.0.0.1"
port = 8765
qmt_path = "C:/国金QMT交易端/userdata_mini"
[accounts.sim]
account_id = "1230001"
account_type = "STOCK"
[accounts.real] # real-money account; name is arbitrary
account_id = "1230002"
account_type = "STOCK"
requires_confirm_live = true # marks this as a "live account" — extra confirmation required
[audit]
log_path = "~/.miniqmt_cli/orders.jsonl"
Env overrides: MINIQMT_CLI_SERVER_HOST, MINIQMT_CLI_SERVER_PORT, MINIQMT_CLI_SERVER_QMT_PATH
Troubleshooting
| Symptom | Likely Cause | Fix |
|---|---|---|
| "cannot reach daemon" | Tunnel down or daemon stopped | Check ssh -N -L ... is running; schtasks /run /tn MiniqmtDaemon |
daemon.state == "degraded" (xtquant_loaded=false) |
qmt_path wrong or miniQMT not installed |
Edit server.toml qmt_path; ensure miniQMT client directory exists |
accounts.<name>.trader.state == "never_connected" |
No account API has been called for this account yet this daemon process lifetime. Does NOT mean miniQMT is logged out. |
Not an error. Run any account command to trigger lazy session creation; real login failures surface there |
accounts.<name>.trader.state == "lost" |
xtquant SDK reported on_disconnected (e.g. miniQMT client closed, broker dropped the session, transient IPC blip). The pool still holds the stale handle, and get_trader will return it as-is until the daemon process restarts. |
Restart the daemon (ssh <user>@<windows-host> "schtasks /run /tn MiniqmtDaemon") — that's the only reliable recovery. Re-running account asset does NOT trigger a reconnect: get_trader short-circuits on the stale entry. Read queries (asset / positions) may even appear to succeed via the SDK's local cache, but those numbers are last-known-good as of disconnect; orders and cancels will hit the dead broker channel and fail. Ensure miniQMT client is open and logged in before restart. |
One specific xt API hangs while others work (e.g. account trades consistently 10s 503 but asset / positions / orders return fast). Persists across daemon restarts. |
xtquant SDK is drifted behind the miniQMT client version. The QMT installer historically bundles xtquant under bin.x64/Lib/site-packages/xtquant/, but the bundled .py files may be years older than the running XtMiniQmt.exe. When the client introduces new fields in a record type (e.g. a new field in trade records), the old SDK's parser hangs trying to read a format it doesn't know. Other queries keep working because their wire format didn't change. |
Compare versions: xttrader.py mtime under <qmt_root>/bin.x64/Lib/site-packages/xtquant/ vs XtMiniQmt.exe mtime under <qmt_root>/bin.x64/. If the gap is >6 months, replace the SDK with a current pip install xtquant build (the wheel ships its own xtpythonclient.pyd + dependent DLLs, so the new files dropped into the same canonical path are self-contained). Always back up xtquant/ before overwriting. The per-label circuit breaker (_xt_call.py) will isolate the wedged label automatically while you investigate, so the daemon doesn't go down. |
accounts.<name>.baseline == "pending" |
Trader is up but today's risk baseline wasn't captured (login-time capture failed, e.g. broker blip). Orders on the pending account will be rejected BASELINE_PENDING. |
Run miniqmt-cli account asset --account <name> again — login re-captures baseline. Check daemon logs for baseline capture after login failed if it persists. |
accounts.<name>.risk_breaker == "tripped" |
The account's risk breaker fired (e.g. daily loss limit hit). Opening orders blocked; closing sells and cancels still allowed. | miniqmt-cli risk status --account <name>; reset with risk reset --account <name> --note "<reason>" after confirming cause |
| Exit code -1073741510 | Daemon was killed (Ctrl+C / task stopped) | Restart: schtasks /run /tn MiniqmtDaemon |
GuardExit on order |
Safety guard blocked the order | Check: --dry-run was set, confirmation was declined, or --confirm-live missing/wrong |
BrokerReject |
Broker refused the order | Check order params, market hours, account balance |
| GBK encoding errors in SSH | Windows CMD default codepage | Use chcp 65001 prefix or pipe through Python |
Exit Codes
| Code | Meaning |
|---|---|
| 0 | Success |
| 1 | Generic error |
| 2 | Broker rejected the order (BrokerReject) |
| 3 | Safety guard refused to proceed (GuardExit) |
| 4 | Daemon-side risk layer refused the action (RiskReject) |
| 5 | Submit indeterminate — order/cancel timed out; broker state unknown. DO NOT RETRY. Reconcile via miniqmt-cli account orders --account <name> before any next action |
Exit code 5 is the contract for state-changing operations (place/cancel) that didn't get a definitive response within the submit timeout. Scripts that branch on exit code should treat it as fundamentally different from exit 1: code 1 means "we know it failed", code 5 means "we don't know whether the broker accepted it". A naive retry on code 5 risks doubling the position.
Related Skills
- trading-analysis — Money flow + signals built on top of
miniqmt-cli ticks
skills/trading-analysis/SKILL.md
npx skills add oopslink/trading-skills --skill trading-analysis -g -y
SKILL.md
Frontmatter
{
"name": "trading-analysis",
"description": "Analyze A-share money flow from tick-level data using the trading-analysis CLI, with both historical and real-time modes. Use this skill whenever the user mentions money flow, capital flow, main force inflow\/outflow, institutional buying, tick-level analysis, order size classification (super-large\/large\/medium\/small orders), real-time monitoring of capital flow, or wants to know whether smart money is buying or selling a stock. Also use when the user asks about 资金流向, 主力资金, 大单, 超大单, 散户, 逐笔分析, or 实时监控."
}
trading-analysis: Tick-Level Money Flow Analysis
Architecture
trading-analysis CLI
|
v
miniqmt_cli.client.transport (HTTP)
|
v
miniqmt-cli daemon (Windows, port 8765)
|
v
xtquant tick snapshots (3-second intervals)
Requires: miniqmt-cli daemon running + SSH tunnel active.
Verify with miniqmt-cli health before use.
How It Works
- Fetches 3-second tick snapshots from the daemon (
/data/ticks) - Diffs adjacent snapshots to get per-interval delta (amount, volume, trade count)
- Classifies direction:
lastPrice >= ask1= active buy,<= bid1= active sell, else neutral (split 50/50) - Hybrid tier assignment:
avg_amount = delta_amount / delta_tradesdetermines tier,delta_amountis accumulated - Aggregates buy/sell/net per tier, computes main force net (xlarge + large) and retail net (medium + small)
Tier Thresholds (Default)
| Tier | Average Per-Trade Amount | Label |
|---|---|---|
| Extra-large | >= 100 wan (1,000,000) | 超大单 |
| Large | 20 ~ 100 wan | 大单 |
| Medium | 4 ~ 20 wan | 中单 |
| Small | < 4 wan | 小单 |
Thresholds are configurable via --thresholds.
Commands
# Single stock, today, full trading day
trading-analysis moneyflow --code 002028.SZ
# Specify date (historical)
trading-analysis moneyflow --code 002028.SZ --date 20260416
# Custom time range
trading-analysis moneyflow --code 002028.SZ --start 093000 --end 110000
# Multiple stocks (outputs per-stock tables + ranking)
trading-analysis moneyflow --code 002028.SZ --code 000859.SZ --code 300618.SZ
# JSON output
trading-analysis moneyflow --code 002028.SZ --format json
# Custom thresholds (wan): small/medium boundary, medium/large, large/xlarge
trading-analysis moneyflow --code 002028.SZ --thresholds 4,20,100
# Use specific miniqmt-cli client config
trading-analysis moneyflow --code 002028.SZ --config ~/.miniqmt_cli/client.toml
Real-time Mode (--live)
Polls the daemon for latest tick snapshots every N seconds, accumulates deltas into a running summary, and displays via Rich Live (in-place terminal refresh). Ctrl+C to stop; prints final summary on exit.
# Single stock real-time (default 10s refresh)
trading-analysis moneyflow --code 002028.SZ --live
# Multiple stocks real-time ranking
trading-analysis moneyflow --code 002028.SZ --code 000859.SZ --code 300618.SZ --live
# Custom refresh interval (30 seconds)
trading-analysis moneyflow --code 002028.SZ --live --interval 30
- Single stock: full four-tier table, updated in-place
- Multiple stocks: compact ranking table sorted by main force net inflow
- Requires market hours for meaningful data; outside trading hours the display will show zeros
- Combine with
--signalto get alert-on-trigger behavior; see Signal Expressions below.
Signal Expressions (--signal)
Live mode supports a minimal expression language for triggering alerts when conditions are met. The expression is evaluated every refresh interval against the running per-stock state.
# Alert when main force is net buying AND price is above MA20
trading-analysis moneyflow --code 002028.SZ --live \
--signal "main_net > 0 and price > ma20"
# Alert on a reversal signal
trading-analysis moneyflow --code 002028.SZ --live \
--signal "main_net > 500000 and ma5 > ma20"
# Multiple stocks — signal is evaluated per code independently
trading-analysis moneyflow --code 002028.SZ --code 000859.SZ --live \
--signal "main_net > 0"
Variables (all in yuan unless noted):
| Variable | Meaning |
|---|---|
main_net |
Main force net inflow (xlarge + large tiers) |
retail_net |
Retail net inflow (medium + small tiers) |
price |
Latest tick lastPrice |
ma5 / ma10 / ma20 / ma60 |
Simple moving average of that many 1-minute closes |
Operators: >, <, >=, <=, ==, and, or (lowercase only).
Literals: integers and floats; numbers are in yuan (e.g. 500000 = 50 wan).
Semantics:
- If any referenced variable is
None(e.g. MA window not yet filled), the signal is not triggered — no false positives during warm-up. - MA windows are auto-detected from the expression;
ma20triggers a preload of 20 1-minute klines before the live loop starts. - Trigger flips edge-sensitive: the alert fires once when
False → True. It re-arms when the expression goes back toFalse.
Output: when triggered, the live display prints a red banner >>> 002028.SZ 信号触发: <expr> <<< and the footer shows "已触发: [codes]". On Ctrl+C exit, a final summary lists which codes ever triggered.
Limitations:
- No parentheses — precedence is strictly
cmp → and → orwith left-to-right evaluation. - No arithmetic (
+,-,*,/) inside expressions — compare variables to literal thresholds only. - No historical lookback beyond the MA window (no "price N minutes ago").
Parameter Reference
| Parameter | Default | Format |
|---|---|---|
--code |
(required, multiple) | XXXXXX.SZ / XXXXXX.SH |
--date |
today | YYYYMMDD |
--start |
093000 |
HHMMSS |
--end |
150000 |
HHMMSS |
--format |
table |
table / json / csv |
--thresholds |
4,20,100 |
comma-separated wan |
--config |
from miniqmt-cli client.toml | path |
--live |
off | flag |
--interval |
10 |
seconds |
Output Example
002028.SZ 2026-04-16 09:30 ~ 15:00
──────────────────────────────────────────────────
档位 买入(万) 卖出(万) 净流入(万) 方向
超大单 1,230.5 480.2 +750.3 净流入
大单 860.1 920.3 -60.2 净流出
中单 340.7 290.1 +50.6 净流入
小单 180.3 210.8 -30.5 净流出
──────────────────────────────────────────────────
主力合计 +690.1 净流入
散户合计 +20.1 净流入
统计: 快照 4,800 条 | 有效区间 4,799 | 买入 2,103 | 卖出 2,288 | 中性 408
Multiple stocks append a ranking:
── 主力净流入排名 ──
#1 002028.SZ +690.1万
#2 300618.SZ +120.3万
#3 000859.SZ -45.2万
Interpreting Results
- 主力合计 > 0: Main force (institutions/large traders) net buying -- bullish signal
- 主力合计 < 0: Main force net selling -- bearish signal
- 超大单 dominant: Likely institutional activity
- 大单 dominant without 超大单: Could be large retail or small institutional
- All activity in 小单/中单: Retail-driven, no clear institutional signal
Troubleshooting
| Symptom | Cause | Fix |
|---|---|---|
| "cannot reach daemon" | SSH tunnel or daemon down | miniqmt-cli health; restart tunnel/daemon |
| "无数据" | Non-trading hours, invalid code, or no cached data | Check code format, try during market hours |
| All tiers show 0 | No trading activity in the time range | Widen the time range |
| 大单/超大单 always 0 | 3-second avg too small to hit threshold | Lower thresholds: --thresholds 2,10,50 |
| Live mode shows all zeros | Outside trading hours, no new ticks | Run during market hours (09:30-15:00) |
| Live mode not updating | Daemon not returning fresh snapshots | Check miniqmt-cli health; ensure miniQMT client is open |
Related Skills
- miniqmt-cli — The daemon and data source underneath; the only supported way to reach the trading daemon


