← 返回 Skills 市场
chenghaifeng08-creator

Grid Trading Pro

作者 chenghaifeng08-creator · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ⚠ suspicious
170
总下载
0
收藏
1
当前安装
2
版本数
在 OpenClaw 中安装
/install grid-trading-pro
功能描述
Enhanced grid trading bot with auto-adjust, multi-coin support, auto-compound profits, and risk management. Passive income through automated buy-low-sell-high.
使用说明 (SKILL.md)

🧠 V2.0 能力

本技能已升级至 V2.0 标准,包含:

  • 知识注入: 执行前自动搜索相关经验 (tasks/KNOWLEDGE.md)
  • 跨模型审查: 关键决策前调用审查流程 (/cross-review)
  • 工具注册表: 统一工具发现 (tools/README.md)
  • 会话快照: 快速恢复 (\x3C1min, tasks/SESSION-SNAPSHOT.md)

💰 付费服务

网格交易策略定制:

服务 价格 交付
策略配置 ¥500/次 参数优化 + 回测
多币种组合 ¥1200/次 5 币种网格配置
风险控制优化 ¥800/次 止损 + 仓位管理
月度顾问 ¥2500/月 每周策略调整

联系: 微信/Telegram 私信,备注"网格交易"



🚀 Pro Version — 专业网格交易仪表板

需要多币种监控 + 自动优化?

👉 Data Visualization Pro — 专业网格交易可视化管理系统

  • 📊 多币种网格实时监控(持仓/盈亏/网格密度)
  • 🤖 AI 参数优化(根据波动率自动调整网格)
  • 📈 收益曲线 + 累计利润分析
  • 🔔 价格突破警报 + 网格暂停提醒

限时优惠: ¥399/月 或 ¥2,999/年(首月¥99 体验)

📩 立即咨询: 发送"Pro"至微信/Telegram,获取演示视频 +7 天试用

已有 479+ 交易者使用免费版,升级 Pro 解锁 AI 优化


💰 付费服务

网格交易策略咨询 & 定制:

服务 价格 交付
策略参数优化 ¥1500/次 回测 + 最佳参数推荐
多币种组合设计 ¥3000/份 5 币种网格组合 + 风控
定制网格系统 ¥8000 起 根据你的需求定制
月度策略顾问 ¥5000/月 每周参数调整 + 监控

⚠️ 风险提示: 加密货币交易有风险,过往表现不代表未来收益。

联系: 微信/Telegram 私信,备注"网格交易"


🎯 What It Solves

Manual grid trading is tedious:

  • ❌ Need to monitor prices constantly
  • ❌ Manual grid adjustments
  • ❌ No auto-compound
  • ❌ Hard to track profits
  • ❌ Risk management is manual

Grid Trading Pro automates everything!


✨ Features

🤖 Auto Grid Management

  • Automatically creates optimal grid levels
  • Adjusts grids based on volatility
  • Multi-grid support (run multiple grids)

💰 Auto-Compound

  • Reinvests profits automatically
  • Compound daily/weekly/monthly
  • Exponential growth

📊 Real-Time Analytics

  • Profit tracking per grid
  • ROI calculations
  • Historical performance
  • Export reports (CSV/PDF)

⚠️ Risk Management

  • Stop-loss protection
  • Take-profit targets
  • Price range alerts
  • Emergency pause button

🪙 Multi-Coin Support

  • Run grids on multiple coins
  • BTC, ETH, SOL, BNB, etc.
  • Diversify automatically

📱 Notifications

  • Telegram alerts
  • Discord webhooks
  • Email notifications
  • Price alerts

📦 Installation

clawhub install grid-trading-pro

🚀 Quick Start

1. Configure API Keys

# Set your Binance API keys
export BINANCE_API_KEY="your-api-key"
export BINANCE_SECRET_KEY="your-secret-key"

2. Create Your First Grid

const { GridTrader } = require('grid-trading-pro');

const trader = new GridTrader({
  symbol: 'BTC/USDT',
  lowerPrice: 40000,    // Buy below this
  upperPrice: 50000,    // Sell above this
  grids: 20,            // Number of grid levels
  investment: 100,      // USDT to invest
  autoCompound: true,   // Reinvest profits
  stopLoss: 38000,      // Emergency stop
  takeProfit: 52000     // Take profit target
});

// Start trading
await trader.start();

3. Monitor Your Grid

// Check status
const status = trader.getStatus();
console.log(status);
// {
//   running: true,
//   invested: 100,
//   profit: 2.5,
//   roi: 2.5,
//   gridsFilled: 8,
//   totalTrades: 15
// }

// Get profit report
const report = trader.getReport();
console.log(report);

💡 Advanced Usage

Multi-Grid Strategy

const trader = new GridTrader();

// Create multiple grids
await trader.createGrid({
  id: 'grid-1',
  symbol: 'BTC/USDT',
  lowerPrice: 40000,
  upperPrice: 50000,
  grids: 20,
  investment: 100
});

await trader.createGrid({
  id: 'grid-2',
  symbol: 'ETH/USDT',
  lowerPrice: 2000,
  upperPrice: 2500,
  grids: 15,
  investment: 50
});

await trader.createGrid({
  id: 'grid-3',
  symbol: 'SOL/USDT',
  lowerPrice: 80,
  upperPrice: 120,
  grids: 10,
  investment: 30
});

// Start all grids
await trader.startAll();

Auto-Compound Settings

const trader = new GridTrader({
  symbol: 'BTC/USDT',
  lowerPrice: 40000,
  upperPrice: 50000,
  grids: 20,
  investment: 100,
  autoCompound: {
    enabled: true,
    frequency: 'daily',  // daily, weekly, monthly
    percentage: 50,      // Compound 50% of profits
    minProfit: 5         // Only compound if profit > $5
  }
});

Risk Management

const trader = new GridTrader({
  symbol: 'BTC/USDT',
  lowerPrice: 40000,
  upperPrice: 50000,
  grids: 20,
  investment: 100,
  risk: {
    stopLoss: 38000,        // Stop if price drops below
    takeProfit: 52000,      // Take profit if price rises above
    maxDrawdown: 10,        // Max 10% drawdown
    trailingStop: true,     // Enable trailing stop
    emergencyPause: true    // Auto-pause on extreme volatility
  }
});

Notifications

const trader = new GridTrader({
  symbol: 'BTC/USDT',
  notifications: {
    telegram: {
      enabled: true,
      botToken: 'your-bot-token',
      chatId: 'your-chat-id'
    },
    discord: {
      enabled: true,
      webhookUrl: 'https://discord.com/api/webhooks/...'
    },
    email: {
      enabled: true,
      smtp: {
        host: 'smtp.gmail.com',
        port: 587,
        user: '[email protected]',
        pass: 'your-password'
      },
      to: '[email protected]'
    }
  }
});

📊 Grid Strategies

Strategy 1: Conservative

{
  symbol: 'BTC/USDT',
  lowerPrice: 38000,
  upperPrice: 52000,
  grids: 30,           // More grids = smaller profits per grid
  investment: 100,
  risk: 'low'
}

Strategy 2: Aggressive

{
  symbol: 'ETH/USDT',
  lowerPrice: 1800,
  upperPrice: 2800,
  grids: 10,           // Fewer grids = larger profits per grid
  investment: 100,
  risk: 'high'
}

Strategy 3: Balanced (Recommended)

{
  symbol: 'BTC/USDT',
  lowerPrice: 40000,
  upperPrice: 50000,
  grids: 20,
  investment: 100,
  risk: 'medium'
}

📈 Expected Returns

Market Condition Monthly ROI Risk
Sideways (Best) 10-20% Low
Slow Uptrend 5-15% Low-Medium
Slow Downtrend 0-5% Medium
Strong Trend -10-5% High

Historical Performance (backtested on 2025 data):

  • BTC/USDT: Average 12% monthly
  • ETH/USDT: Average 15% monthly
  • Top 10 coins: Average 10% monthly

⚠️ Risk Warnings

When Grid Trading Works Best

✅ Sideways/oscillating markets
✅ High volatility
✅ Liquid coins (BTC, ETH, major alts)

When to Avoid

❌ Strong bull runs (price exits range)
❌ Strong bear crashes (heavy losses)
❌ Low liquidity coins
❌ During major news events

Risk Management Tips

  1. Start small: Test with $50-100 first
  2. Set stop-loss: Always protect your capital
  3. Diversify: Run multiple grids on different coins
  4. Monitor: Check daily, adjust weekly
  5. Take profits: Don't be greedy, withdraw regularly

🔧 Configuration Options

Option Type Default Description
symbol string required Trading pair (e.g., 'BTC/USDT')
lowerPrice number required Lower bound of grid
upperPrice number required Upper bound of grid
grids number 20 Number of grid levels
investment number required USDT to invest
autoCompound boolean/object false Auto-reinvest profits
stopLoss number null Stop-loss price
takeProfit number null Take-profit price
notifications object null Alert settings

📱 API Methods

start()

Start the grid trading bot.

await trader.start();

stop()

Stop the grid trading bot.

await trader.stop();

getStatus()

Get current grid status.

const status = trader.getStatus();

getReport()

Get detailed profit report.

const report = trader.getReport();

adjustGrid(params)

Adjust grid parameters.

await trader.adjustGrid({
  lowerPrice: 41000,
  upperPrice: 51000
});

withdrawProfits(amount)

Withdraw profits.

await trader.withdrawProfits(50); // Withdraw $50

💰 Pricing

Tier Price Features
Basic $49 Single grid, basic analytics
Pro $99 Multi-grid, AI optimization, auto-compound
Enterprise $199 Unlimited grids, priority support, custom features

📝 Changelog

v1.0.0 (2026-03-18)

  • Initial release
  • Auto grid management
  • Multi-coin support
  • Auto-compound profits
  • Risk management
  • Real-time analytics
  • Notifications (Telegram, Discord, Email)

📄 License

MIT License - See LICENSE file for details.


🙏 Support


Built with ❤️ by OpenClaw Agent - Your AI Trading Assistant

Remember: Trading involves risk. Only invest what you can afford to lose! 🫡

安全使用建议
Do not hand over live Binance API keys yet. The package currently contains only a local simulation (index.js) that does not read your environment or call exchanges, but SKILL.md asks for credentials and advertises features that aren't implemented or whose files are missing. Steps to consider before installing or using: 1) Verify source and repository contents (ensure README/SKILL.md match the code). 2) Inspect code for any network calls/endpoints or hidden files that would use API keys. 3) If you must test, create Binance API keys with only trading (no withdrawal) and minimal permissions, or use Binance testnet keys. 4) Avoid reusing keys used elsewhere; run the skill in a sandbox or isolated environment. 5) Ask the publisher for the missing files/features (KNOWLEDGE.md, cross-review endpoints, tools README) and for an explanation why env vars are required when the included code doesn't use them. 6) Prefer audited/official trading bots or open-source projects with clear exchange integration before entrusting real funds.
功能分析
Type: OpenClaw Skill Name: grid-trading-pro Version: 1.0.1 The skill is classified as suspicious due to a significant discrepancy between its documentation and its actual implementation. While SKILL.md and README.md claim it is a 'Pro' grid trading bot requiring Binance API keys, the index.js file contains only a simulation using Math.random() and lacks any real trading logic or integration with the ccxt dependency listed in package.json. Furthermore, SKILL.md contains instructions for the AI agent to perform 'knowledge injection' and 'cross-model reviews' using non-existent files (e.g., tasks/KNOWLEDGE.md), which is a form of prompt manipulation. The heavy focus on external paid services and contact via WeChat/Telegram (IOC: @xiaohan_support) suggests potential social engineering or a financial scam.
能力标签
cryptorequires-sensitive-credentials
能力评估
Purpose & Capability
The manifest and SKILL.md present a Binance-integrated trading bot and require BINANCE_API_KEY / BINANCE_SECRET_KEY, but index.js is a local simulation that never reads process.env or calls an exchange API. package.json lists ccxt (expected for exchange access) but the shipped implementation doesn't use it; this is inconsistent — either features are unimplemented or credentials are being requested without justification.
Instruction Scope
SKILL.md instructs you to set Binance API keys and shows code examples implying live trading and notification integrations (Telegram/Discord/SMTP). It also references additional files and systems (tasks/KNOWLEDGE.md, /cross-review, tools/README.md, session snapshot tasks) that are not present in the package. The instructions also encourage off-platform contact (WeChat/Telegram) for paid services. These gaps broaden scope and raise questions about where data/credentials would be used or transmitted.
Install Mechanism
There is no explicit install script (instruction-only install via clawhub), but code files are included and package.json lists a third-party dependency (ccxt). No arbitrary download URLs or archive extraction were specified, which reduces supply-chain risk, but packaging an apparently non-networked index.js together with ccxt is inconsistent and worth verifying.
Credentials
The skill declares two sensitive env vars (BINANCE_API_KEY, BINANCE_SECRET_KEY). Given the included code does not use environment variables or perform network calls, requesting live exchange credentials is disproportionate and unexplained. The SKILL.md examples also accept other secrets (bot tokens, SMTP passwords) but those are not declared as required env vars — another mismatch.
Persistence & Privilege
The skill does not request always:true or modify other skills/config. It is user-invocable and allows autonomous invocation (the platform default). Nothing in the package indicates elevated platform privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install grid-trading-pro
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /grid-trading-pro 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
Added Pro Version CTA for custom services
v1.0.0
Initial release
元数据
Slug grid-trading-pro
版本 1.0.1
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 2
常见问题

Grid Trading Pro 是什么?

Enhanced grid trading bot with auto-adjust, multi-coin support, auto-compound profits, and risk management. Passive income through automated buy-low-sell-high. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 170 次。

如何安装 Grid Trading Pro?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install grid-trading-pro」即可一键安装,无需额外配置。

Grid Trading Pro 是免费的吗?

是的,Grid Trading Pro 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Grid Trading Pro 支持哪些平台?

Grid Trading Pro 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Grid Trading Pro?

由 chenghaifeng08-creator(@chenghaifeng08-creator)开发并维护,当前版本 v1.0.1。

💬 留言讨论