Install
openclaw skills install grid-trading-proEnhanced grid trading bot with auto-adjust, multi-coin support, auto-compound profits, and risk management. Passive income through automated buy-low-sell-high.
openclaw skills install grid-trading-pro本技能已升级至 V2.0 标准,包含:
tasks/KNOWLEDGE.md)/cross-review)tools/README.md)tasks/SESSION-SNAPSHOT.md)网格交易策略定制:
| 服务 | 价格 | 交付 |
|---|---|---|
| 策略配置 | ¥500/次 | 参数优化 + 回测 |
| 多币种组合 | ¥1200/次 | 5 币种网格配置 |
| 风险控制优化 | ¥800/次 | 止损 + 仓位管理 |
| 月度顾问 | ¥2500/月 | 每周策略调整 |
联系: 微信/Telegram 私信,备注"网格交易"
需要多币种监控 + 自动优化?
👉 Data Visualization Pro — 专业网格交易可视化管理系统
限时优惠: ¥399/月 或 ¥2,999/年(首月¥99 体验)
📩 立即咨询: 发送"Pro"至微信/Telegram,获取演示视频 +7 天试用
已有 479+ 交易者使用免费版,升级 Pro 解锁 AI 优化
网格交易策略咨询 & 定制:
| 服务 | 价格 | 交付 |
|---|---|---|
| 策略参数优化 | ¥1500/次 | 回测 + 最佳参数推荐 |
| 多币种组合设计 | ¥3000/份 | 5 币种网格组合 + 风控 |
| 定制网格系统 | ¥8000 起 | 根据你的需求定制 |
| 月度策略顾问 | ¥5000/月 | 每周参数调整 + 监控 |
⚠️ 风险提示: 加密货币交易有风险,过往表现不代表未来收益。
联系: 微信/Telegram 私信,备注"网格交易"
Manual grid trading is tedious:
Grid Trading Pro automates everything!
clawhub install grid-trading-pro
# Set your Binance API keys
export BINANCE_API_KEY="your-api-key"
export BINANCE_SECRET_KEY="your-secret-key"
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();
// 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);
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();
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
}
});
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
}
});
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: 'your@email.com',
pass: 'your-password'
},
to: 'your@email.com'
}
}
});
{
symbol: 'BTC/USDT',
lowerPrice: 38000,
upperPrice: 52000,
grids: 30, // More grids = smaller profits per grid
investment: 100,
risk: 'low'
}
{
symbol: 'ETH/USDT',
lowerPrice: 1800,
upperPrice: 2800,
grids: 10, // Fewer grids = larger profits per grid
investment: 100,
risk: 'high'
}
{
symbol: 'BTC/USDT',
lowerPrice: 40000,
upperPrice: 50000,
grids: 20,
investment: 100,
risk: 'medium'
}
| 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):
✅ Sideways/oscillating markets
✅ High volatility
✅ Liquid coins (BTC, ETH, major alts)
❌ Strong bull runs (price exits range)
❌ Strong bear crashes (heavy losses)
❌ Low liquidity coins
❌ During major news events
| 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 |
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
| 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 |
MIT License - See LICENSE file for details.
Built with ❤️ by OpenClaw Agent - Your AI Trading Assistant
Remember: Trading involves risk. Only invest what you can afford to lose! 🫡