1363/copy-trade/SKILL.md
Copy trade Hyperliquid wallets — monitor profitable traders and mirror their positions automatically. Use when the user wants to follow a wallet, copy trades, set up auto-mirroring, or manage copy trade configurations.
npx skillsauth add starchild-ai-agent/community-skills @1363/copy-tradeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Mirror positions from profitable Hyperliquid wallets onto your account. Works with the hl-trader-rankings skill to find wallets worth copying.
Before executing copy trades, the wallet policy must be active. Load the wallet-policy skill and propose the standard wildcard policy (deny key export + allow *).
Never copy blind. Use hl-trader-rankings to evaluate a wallet before following:
Red flags: Drawdown >30%, leverage >20x, <1 month history, single lucky trade.
Three sizing modes available:
Proportional — Scales target's position sizes by account ratio.
Your $200 account / Their $4M account = 0.005% ratio
Their $2M STRK short → Your ~$100 STRK short
Use --scale to adjust (0.5 = half size, 2.0 = double).
Fixed — Same USD amount for every position regardless of target's sizing.
--fixed-size 50 → Every copied position is ~$50 notional
Best for: testing, small accounts, equal-weighting.
Custom — Specify exact sizes per coin.
custom_sizes = {"BTC": 0.001, "ETH": 0.01, "SOL": 1.0}
Best for: copying specific plays, not full portfolio.
Always configure:
--max-leverage N — Hard cap (default 10x, even if target uses 50x)--max-position N — Max USD per position (default $500)--leverage N — Override all positions to this leverage--blacklist COIN1 COIN2 — Skip specific coins--whitelist COIN1 COIN2 — Only copy these coinsOne-shot scan (detect what needs changing):
python3 skills/copy-trade/scripts/orchestrator.py \
--target 0xADDRESS \
--mode fixed --fixed-size 50 --leverage 5 \
--max-leverage 10 --max-position 200
With your address (compares actual positions):
python3 skills/copy-trade/scripts/orchestrator.py \
--target 0xTARGET --my-address 0xYOURS \
--mode proportional --my-account 200
Check status:
python3 skills/copy-trade/scripts/orchestrator.py --status
Stop copying:
python3 skills/copy-trade/scripts/orchestrator.py --stop
The orchestrator outputs structured commands. Execute them in order:
{
"tool": "hl_leverage",
"params": {"coin": "STRK", "leverage": 5, "cross": true}
}
{
"tool": "hl_order",
"params": {"coin": "STRK", "side": "sell", "size": 100.0}
}
For each command: call the tool with the given params. Verify fills with hl_account() after.
For ongoing copy trading, schedule the orchestrator:
schedule_task(
command="python3 skills/copy-trade/scripts/orchestrator.py --target 0x... --mode fixed --fixed-size 50 --leverage 5",
schedule="every 5 minutes"
)
The agent reviews output each cycle and executes any new actions.
| Account Size | Suggested Mode | Config |
|-------------|---------------|--------|
| <$500 | Fixed | --fixed-size 20-50 --max-leverage 5 |
| $500-$2k | Proportional | --scale 1.0 --max-leverage 10 |
| $2k-$10k | Proportional | --scale 1.0 --max-position 1000 |
| >$10k | Proportional | --scale 0.5-1.0 (conservative) |
| Script | Purpose |
|--------|---------|
| copy_engine.py | Core diff engine — detects position changes |
| orchestrator.py | Bridges engine output to HL tool commands |
State is tracked in /data/workspace/output/copy_trade_state.json:
The state file is the source of truth for what we're mirroring. If you manually close a copied position, run --stop to reset state.
tools
TQX (tqx.trade) HK/US stock quant workflow via tqx-cli: cross-sectional factor analysis, event-driven strategy backtests on the panda_backtest engine, and agent-driven automated paper trading. Use when the user wants to run factor IC/IR analysis, backtest a Python trading strategy on Hong Kong or US stocks, or set up agent-automated trading (e.g. "backtest a moving-average strategy on AAPL", "analyze a momentum factor on HK stocks", "let the agent trade my paper account").
tools
中学物理实验教学参赛方案套件。包含四个完整实验(单摆测g、声悬浮测声速、向心力定量演示仪、电磁阻尼定量研究),每套含固件源码、3D打印图纸、教学PPT、教学文稿、采购清单、调试手册、视频分镜脚本、模拟器。Use when a teacher/student needs a complete, classroom-ready physics experiment package for competition or teaching.
development
End-to-end blog management for AI agents. Write, import, build, preview, and publish articles using the blog template. Covers draft workflow, article import, SEO, OG images, and deployment.
development
ESP8266/ESP32 + 磁簧开关/霍尔传感器 单摆测重力加速度实验套件。 硬件搭建→固件烧录→数据采集→Web仪表盘→g值计算→教学文档,一站式完成。 Use when the user wants to build a pendulum g-measurement experiment, measure gravity with a micro-controller, or needs a complete physics experiment package with hardware + firmware + dashboard + teaching materials.