首页龙虾技能列表 › Base Trader — 技能工具

Base Trader — 技能工具

v1.1.1

[自动翻译] Autonomous crypto trading on Base via Bankr. Use for trading tokens, monitoring launches, executing strategies, or managing a trading portfolio. Trigg...

24· 6,625·25 当前·29 累计·💬 4
by @sp0oby·MIT-0
下载技能包
License
MIT-0
最后更新
2026/2/27
安全扫描
VirusTotal
无害
查看报告
OpenClaw
可疑
medium confidence
该技能用于Base链上交易操作,代码和指令与其声明目的一致。
评估建议
此技能用于区块链交易,使用前请确保了解相关风险并谨慎操作。...
详细分析 ▾
用途与能力
The skill's stated purpose (autonomous trading via Bankr) is plausible and its instructions call Bankr commands to execute trades. However the skill metadata declares no required credentials or env vars while the runtime instructions explicitly rely on a Bankr config and an on-chain wallet (e.g., ~/.clawdbot/skills/bankr/config.json and ~/clawd/skills/bankr/scripts/bankr.sh). Delegating credentials to another skill (Bankr) is reasonable, but the lack of any declared relationship in metadata and inconsistent paths ('.clawdbot' vs 'clawd') is an incoherence that obscures what credentials/folders it will access.
指令范围
SKILL.md instructs the agent to run external Bankr scripts at hardcoded paths, to read and write local data files (data/trades.json, data/performance.json), and to perform autonomous periodic actions (cron/heartbeat flows). It does not instruct reading arbitrary system files, but it assumes access to another skill's scripts/config and to wallet credentials that are not documented in the metadata. Several paths are inconsistent across files (e.g., ~/.clawdbot vs ~/clawd), which could cause misexecution or indicate sloppy packaging. The instructions give the agent broad discretion to run Bankr commands (buy/sell/set stop loss), which means if Bankr config contains keys, the skill can trade on the user's behalf.
安装机制
There is no install spec (instruction-only plus two tiny scripts). That minimizes installer risk because nothing is downloaded at install time. The included shell scripts are small and readable; no network download/install steps are present in the repo itself.
凭证需求
Metadata lists no required environment variables or credentials, yet SKILL.md requires a Bankr config file and an on-chain wallet to be present. The skill relies implicitly on credentials stored by the Bankr skill (or in the referenced config path) but does not declare or surface this in requires.env/primaryEnv. Additionally, the log script uses jq but the skill does not declare jq or other binary dependencies. This mismatch reduces transparency about what secrets and system state the skill will access.
持久化与权限
The skill does not request always:true and does not modify other skills' configs. It runs autonomously if invoked (disable-model-invocation is false), which is the platform default — combine that with the ability to call trading commands and you'll get automated trading behavior, but the skill itself does not demand elevated platform persistence.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.1.12026/1/29

Remove personal data for public distribution - no hardcoded wallets or user-specific references

● 无害

安装命令 点击复制

官方npx clawhub@latest install base-trader
镜像加速npx clawhub@latest install base-trader --registry https://cn.clawhub-mirror.com

技能文档

Autonomous trading system for Base chain via Bankr API.

Philosophy

"The market is a machine for transferring wealth from the impatient to the patient."

This skill prioritizes capital preservation over aggressive gains. Every trade has defined risk parameters. No YOLO.

Prerequisites

  • Bankr API configured at ~/.clawdbot/skills/bankr/config.json
  • ETH in your Bankr wallet for gas and trading
  • Check your wallet address with: bankr.sh "What is my wallet address?"

Core Principles

1. Risk Management (NON-NEGOTIABLE)

MAX_POSITION_SIZE = 10% of portfolio
MAX_SINGLE_TRADE = $50 USD
STOP_LOSS = -15% from entry
TAKE_PROFIT = +30% minimum target
MAX_DAILY_LOSS = -20% of starting balance

If daily loss limit hit → STOP TRADING FOR 24 HOURS.

2. Entry Criteria (ALL must pass)

Before ANY buy:

  • [ ] Liquidity > $10k
  • [ ] Contract verified on Basescan
  • [ ] No honeypot indicators (can sell)
  • [ ] Not on known scam list
  • [ ] Age > 5 minutes (avoid rugs at launch)
  • [ ] Price action shows accumulation, not dump

3. Exit Rules

Take Profit (scale out):

  • 25% at +30%
  • 25% at +50%
  • 25% at +100%
  • Hold 25% moonbag

Stop Loss:

  • Hard stop at -15%
  • No averaging down on losers

Trading Strategies

Strategy 1: Launch Sniper (HIGH RISK)

Monitor new token launches, enter early with small size.

# Check trending/new tokens
scripts/bankr.sh "What tokens are trending on Base?"

# Research before buying scripts/bankr.sh "What's the liquidity for TOKEN on Base?"

# Small entry scripts/bankr.sh "Buy $20 of TOKEN on Base"

Rules:

  • Max $20 per snipe
  • Sell 50% at 2x, rest at 5x or stop loss
  • Max 3 snipes per day

Strategy 2: Momentum Trading (MEDIUM RISK)

Trade established tokens showing strength.

Entry signals:

  • Price > 20-period MA
  • Volume increasing
  • Higher lows forming
# Check momentum
scripts/bankr.sh "Do technical analysis on TOKEN"

# Enter with limit order scripts/bankr.sh "Buy $30 of TOKEN if price drops to X"

Strategy 3: DCA Blue Chips (LOW RISK)

Steady accumulation of proven tokens.

# Weekly DCA
scripts/bankr.sh "DCA $20 into ETH every week on Base"
scripts/bankr.sh "DCA $10 into USDC every week on Base"

Execution via Bankr

Check Portfolio

~/clawd/skills/bankr/scripts/bankr.sh "Show my portfolio on Base"

Execute Trade

~/clawd/skills/bankr/scripts/bankr.sh "Buy $25 of TOKEN on Base"

Set Stop Loss

~/clawd/skills/bankr/scripts/bankr.sh "Set stop loss for TOKEN at -15%"

Check Price

~/clawd/skills/bankr/scripts/bankr.sh "What's the price of TOKEN on Base?"

Trade Journal

Log every trade to data/trades.json:

{
  "timestamp": "2026-01-28T12:00:00Z",
  "action": "BUY",
  "token": "TOKEN",
  "amount_usd": 25,
  "price": 0.001,
  "reason": "Launch snipe - verified contract, good liquidity",
  "tx": "0x..."
}

After each trade, update the journal. Review weekly for pattern analysis.

Daily Routine

Morning (9 AM)

  • Check portfolio balance
  • Review overnight price action
  • Identify opportunities
  • Set limit orders for the day

Midday (1 PM)

  • Check open positions
  • Adjust stop losses if in profit
  • Take profits if targets hit

Evening (6 PM)

  • Close any day trades
  • Log all trades to journal
  • Calculate daily PnL
  • Review what worked/didn't

Red Flags (DO NOT TRADE)

  • Honeypot (can't sell)
  • Liquidity < $5k
  • Unverified contract
  • Team anonymous with no track record
  • Promises of guaranteed returns
  • Excessive tax (>10%)
  • Locked liquidity < 30 days
  • Price already 10x+ from launch

Performance Tracking

Track in data/performance.json:

{
  "start_date": "2026-01-28",
  "starting_balance_usd": 100,
  "current_balance_usd": 100,
  "total_trades": 0,
  "winning_trades": 0,
  "losing_trades": 0,
  "win_rate": 0,
  "total_pnl_usd": 0,
  "best_trade": null,
  "worst_trade": null
}

Safety Overrides

If ANY of these occur, STOP ALL TRADING:

  • Daily loss > 20%
  • 3 consecutive losing trades
  • Portfolio down > 30% from ATH
  • Unexpected error in execution
  • Market-wide crash (ETH -20% in 24h)

Wait 24 hours, reassess, then resume with smaller size.

Autonomous Trading Mode

When running autonomously (via cron or heartbeat):

Morning Scan (9 AM)

  • Check portfolio balance
  • Review overnight price action on holdings
  • Scan for new opportunities
  • Set limit orders for the day

Midday Check (1 PM)

  • Monitor open positions
  • Adjust trailing stops on winners
  • Take profits if targets hit
  • Log any executed trades

Evening Review (6 PM)

  • Close day trades if any
  • Calculate daily PnL
  • Update performance.json
  • Generate summary for user

Execution Commands

# Morning
~/clawd/skills/bankr/scripts/bankr.sh "Show my portfolio on Base"
~/clawd/skills/bankr/scripts/bankr.sh "What tokens are trending on Base?"

# Execute trade ~/clawd/skills/bankr/scripts/bankr.sh "Buy $25 of TOKEN on Base"

# Set protection ~/clawd/skills/bankr/scripts/bankr.sh "Set stop loss for TOKEN at -15%"

# Take profit ~/clawd/skills/bankr/scripts/bankr.sh "Sell 25% of my TOKEN on Base"

References

Core Trading

Market & Research

Execution

Advanced


"The goal is not to make money on every trade. The goal is to be profitable over time."

数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务