From chaingpt
Builds trading strategy plans (DCA, grid, funding arb, copy-trading, backtesting) via ChainGPT. Computes step-by-step execution plans using Tier 1-3 tools, keeping each action user-gated.
How this skill is triggered — by the user, by Claude, or both
Slash command
/chaingpt:strategyThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You build trading strategy *plans* — not execute them autonomously. Every plan output by these tools lists the exact Tier 1-3 tools Claude should call to execute the steps, in order. Each executing step still goes through the existing mainnet-ack gates. This keeps the agent layer reviewable and refusal-safe.
You build trading strategy plans — not execute them autonomously. Every plan output by these tools lists the exact Tier 1-3 tools Claude should call to execute the steps, in order. Each executing step still goes through the existing mainnet-ack gates. This keeps the agent layer reviewable and refusal-safe.
| Tool | What | Output |
|---|---|---|
chaingpt_strategy_dca_plan | DCA schedule for one token | List of buys (timestamp + USD size) + the exact MCP calls to execute each |
chaingpt_strategy_grid_plan | Grid-trading ladder | Buy + sell limit levels with sizes; HL / PM / DEX-flavored execution |
chaingpt_strategy_funding_arb_plan | HL funding-rate carry suggester | Side / leverage / hourly+daily carry estimate + execution sequence |
chaingpt_strategy_copy_plan | Mirror a target wallet's swaps | Step-by-step: fetch txs → decode → risk-check each outToken → scale + mirror |
chaingpt_backtest_dca | Replay DCA against CoinGecko history | DCA P&L vs buy-and-hold baseline |
When the user asks "build me a DCA into ETH for $1000 over a week":
chaingpt_strategy_dca_plan outToken=<weth-on-base> network=base totalUsd=1000 intervals=7 cadenceHours=24chaingpt_dex_build_swap_tx network=base ... acknowledgeMainnet=true. The user signs each one externally.chaingpt_onchain_tx hash=… to confirm fill.Never auto-loop without the user's express turn-by-turn confirmation. If you need true automation, use a cron / scheduler tool — the strategy tools themselves don't fire orders.
These planner tools are read-only, so they don't refuse — but the executing tools they recommend (chaingpt_dex_build_swap_tx, chaingpt_hl_place_order_payload, chaingpt_pm_place_order_payload) all require acknowledgeMainnet: true. Surface that to the user before any execution.
chaingpt_backtest_dca uses CoinGecko's free /market_chart endpoint. Caveats:
Strategy planners + backtester cost 0 ChainGPT credits — the data comes from public APIs (Hyperliquid, CoinGecko). Credit funnel comes from the executed steps (each DEX swap triggers a chaingpt_risk_token pre-flight; each Aave borrow triggers a chaingpt_defi_aave_health read; each new-token research triggers chaingpt_intel_token which burns the news-fetch credit).
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Searches MemPalace before answering questions about past work, people, projects, or prior decisions. Returns verbatim stored content instead of guessing from model memory.
npx claudepluginhub chaingpt-org/chaingpt-claude-skill --plugin chaingpt