Token导航 LogoToken导航TokenDH.com
研究检索权限需确认github未标认证来源可访问许可证需确认审计未展示

%401363%2fcopy-trade%401363%2f 复制交易

Agent Skill

%401363%2fcopy-trade 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

198

周安装

8

GitHub Stars

公开资料未说明

下载量

62
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:%401363%2fcopy-trade(%401363%2f 复制交易)
来源仓库:https://github.com/starchild-ai-agent/community-skills
仓库路径:skills/%401363%2Fcopy-trade
安装命令:
npx skills add https://github.com/starchild-ai-agent/community-skills --skill @1363/copy-trade
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/starchild-ai-agent/community-skills --skill @1363/copy-trade

简介

复制 Hyperliquid 平台上高 ROI 钱包的交易策略到本地账户。

  • 结合 hl-trader-rankings 筛选优质跟单目标,评估风险收益比。
  • 支持按比例缩放仓位,适配不同资金规模的跟单需求。
  • 需先加载 wallet-policy 技能并设置允许交易的权限策略。
  • %401363%2fcopy-trade 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Hyperliquid Copy Trade

Mirror positions from profitable Hyperliquid wallets onto your account. Works with the hl-trader-rankings skill to find wallets worth copying.

Prerequisites — Wallet Policy

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 *).

Workflow

1. Analyze First (hl-trader-rankings)

Never copy blind. Use hl-trader-rankings to evaluate a wallet before following:

  • ROI and PnL history
  • Drawdown profile
  • Leverage habits
  • Trading style (scalper vs swing vs position)

Red flags: Drawdown >30%, leverage >20x, <1 month history, single lucky trade.

2. Configure Copy Mode

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.

3. Set Safety Rails

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 coins

4. Run Copy Check

One-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

5. Execute Actions

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.

6. Schedule Recurring Monitoring

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.

Sizing Cheat Sheet

Account SizeSuggested ModeConfig
<$500Fixed--fixed-size 20-50 --max-leverage 5
$500-$2kProportional--scale 1.0 --max-leverage 10
$2k-$10kProportional--scale 1.0 --max-position 1000
>$10kProportional--scale 0.5-1.0 (conservative)

Risk Management

  • Daily loss limit — Set in config JSON. Engine stops if hit.
  • Max positions — Don't overextend. 5-10 max for small accounts.
  • Leverage cap — Always cap. Target using 50x doesn't mean you should.
  • Latency — Polling-based, not streaming. 1-5 min delay. Fine for swing/position traders, bad for scalpers.
  • Slippage — Market orders may fill at different prices than target's entry. Worse on low-liquidity coins.

Scripts

ScriptPurpose
copy_engine.pyCore diff engine — detects position changes
orchestrator.pyBridges engine output to HL tool commands

State Management

State is tracked in /data/workspace/output/copy_trade_state.json:

  • Positions we've copied
  • Target snapshots (last known positions)
  • Execution history

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.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.78%
按下载量换算23

Claude

28.2%
按下载量换算17

Cursor

18.99%
按下载量换算12

Gemini CLI

9.09%
按下载量换算6

安全审计

暂无安全审计结果可展示。

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills