From sundial-org-awesome-openclaw-skills-4
Autonomous crypto trading on Base via Bankr. Implements risk-managed strategies: launch sniping, momentum trading, and DCA. Executes buys, sells, stop-losses, and portfolio monitoring.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:base-traderThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Autonomous trading system for Base chain via Bankr API.
README.mddata/performance.jsondata/trades.jsonreferences/automation-strategies.mdreferences/execution.mdreferences/launch-sniping.mdreferences/leverage-guide.mdreferences/market-analysis.mdreferences/market-research-bankr.mdreferences/risk-management.mdreferences/strategies.mdreferences/token-analysis.mdscripts/check-portfolio.shscripts/log-trade.shAutonomous trading system for Base chain via Bankr API.
"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.
~/.clawdbot/skills/bankr/config.jsonbankr.sh "What is my wallet address?"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.
Before ANY buy:
Take Profit (scale out):
Stop Loss:
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:
Trade established tokens showing strength.
Entry signals:
# 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"
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"
~/clawd/skills/bankr/scripts/bankr.sh "Show my portfolio on Base"
~/clawd/skills/bankr/scripts/bankr.sh "Buy $25 of TOKEN on Base"
~/clawd/skills/bankr/scripts/bankr.sh "Set stop loss for TOKEN at -15%"
~/clawd/skills/bankr/scripts/bankr.sh "What's the price of TOKEN on Base?"
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.
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
}
If ANY of these occur, STOP ALL TRADING:
Wait 24 hours, reassess, then resume with smaller size.
When running autonomously (via cron or heartbeat):
# 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"
"The goal is not to make money on every trade. The goal is to be profitable over time."
npx claudepluginhub sundial-org/awesome-openclaw-skillsExecutes crypto trading, DeFi operations, and LLM access via natural language. Supports Base, Ethereum, Polygon, Solana, Unichain.
Guides token swaps, bridges, ETH/WETH conversions, and trades on Base, Polygon, Ethereum, Unichain, Solana using USD, percentage, or exact amounts.
Executes real on-chain token trading and data queries (buy, sell, swap, scan tokens, wallet management) on Solana, Ethereum, BSC, and Base via the XXYY Open API.