股票动量扫描仪和投资组合智能。查找任何股票行情,了解动量分数、RSI、线圈突破模式和人工智能分析。扫描 6,500 多只股票和加密货币的主要信号。通过实时警报跟踪投资组合持有情况。市场脉搏、行业趋势、赢/输证明数据和风险评估
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install banana-farmer或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install banana-farmer⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/banana-farmer/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: financial-intel description: Stock momentum scanner and portfolio intelligence. Look up any ticker for momentum scores, RSI, coil breakout patterns, and AI analysis. Scan top signals across 6,500+ stocks and crypto. Track portfolio holdings with real-time alerts. Market pulse, sector trends, win/loss proof data, and risk assessment — all through natural conversation. Powered by 730 days of backtested data with an 80% 5-day win rate. metadata: {"clawdbot": {"requires": {"bins": ["python3"], "env": ["BF_API_KEY"]}, "primaryEnv": "BF_API_KEY", "emoji": "📊", "version": "1.9.0", "author": "clawd", "license": "MIT", "homepage": "https://bananafarmer.app", "tags": ["stocks", "crypto", "momentum", "portfolio", "market-data", "trading", "signals", "technical-analysis", "financial-data", "scanner"]}} ---
Real-time momentum scoring and market intelligence for 6,500+ stocks and crypto assets. Powered by Banana Farmer — an AI momentum scanner that combines technical analysis, price momentum, and social sentiment into a single 0-100 Ripeness Score.
Backed by 730 days of tracked data across 12,450+ signals with a verified 80% five-day win rate.
Option A — Self-provision a free key instantly (no account needed):
curl -s -X POST "https://bananafarmer.app/api/bot/v1/keys/trial" \
-H "Content-Type: application/json" \
-d '{"name": "My Agent", "email": "[email protected]"}'
Save the key from the response. One key per email, instant, no credit card.
Option B — Sign up for a full account: bananafarmer.app/developers
Then:
export BF_API_KEY=bf_bot_your_key_here (or add to OpenClaw config)python3 scripts/bf-lookup.py AAPL — you get score, badge, RSI, coil, price action, bull/bear case, and what to watch forThat is it. You are now scanning 6,500+ assets for momentum signals.
---
Look up any stock or crypto symbol for a full momentum profile: score, badge, RSI, coil pattern, EMA alignment, price action, volatility, scoring breakdown, AI summary, and bull/bear cases.
Example prompts:
How to run:
python3 scripts/bf-lookup.py AAPL
python3 scripts/bf-lookup.py TSLA NVDA AMD # Multiple tickers at once
python3 scripts/bf-lookup.py BTC # Crypto works too
What you get back: Score (0-100), badge (ripe/ripening/overripe/too-late/neutral), current price, 1d and 5d change, RSI with overbought/oversold labels, coil score with breakout flag, EMA 20/50 alignment, 52-week high proximity, volatility metrics, scoring breakdown (technical/momentum/social), key drivers, AI summary bullets, bull case, bear case, and what to watch for.
---
See the highest-scoring momentum signals right now — the tickers showing the strongest alignment across technical, price action, and social indicators.
Example prompts:
How to run:
python3 scripts/bf-market.py top # Default top 10, all badges
python3 scripts/bf-market.py top --limit 20 # Top 20
python3 scripts/bf-market.py top --badge ripe # Only ripe signals
python3 scripts/bf-market.py top --badge ripening # Only ripening (watchlist candidates)
python3 scripts/bf-market.py top --limit 5 --badge ripe # Top 5 ripe only
What you get back: Ranked table with symbol, score, badge, 1-day change, 5-day change, and key drivers for each signal. Results are deduplicated by symbol automatically.
---
Track multiple holdings across accounts. Get a morning-brief-style intelligence report with alerts for RSI overbought/oversold, big daily moves, ripe/overripe signals, risk flags, and P&L calculations.
Example prompts:
How to run:
python3 scripts/bf-portfolio.py portfolios.json # Full brief, all accounts
python3 scripts/bf-portfolio.py portfolios.json --account aaron # Filter to one account
python3 scripts/bf-portfolio.py portfolios.json --json # JSON output for piping
Portfolio file format (portfolios.json):
{
"accounts": [
{
"id": "personal",
"name": "My Portfolio",
"risk_profile": "aggressive",
"holdings": [
{"symbol": "AAPL", "shares": 50, "cost_basis": 185.00},
{"symbol": "NVDA", "shares": 20, "cost_basis": 450.00},
{"symbol": "TSLA", "shares": 10, "cost_basis": 210.00}
]
},
{
"id": "retirement",
"name": "IRA Account",
"risk_profile": "conservative",
"holdings": [
{"symbol": "VOO", "shares": 100, "cost_basis": 430.00},
{"symbol": "ABBV", "shares": 40, "cost_basis": 155.00}
]
}
]
}
What you get back: Market status, data freshness, per-account sections with alerts (overbought, oversold, big moves, ripe/overripe signals, too-late warnings, risk-profile mismatches), and detailed holding lines showing price, score, badge, changes, RSI, shares, cost basis, and unrealized P&L with percentages.
Alert types generated:
---
Get a bird's-eye view of the market: how many signals are firing by badge, what is trending, new ripe signals, and a narrative summary.
Example prompts:
How to run:
python3 scripts/bf-market.py pulse
What you get back: Narrative summary, signal counts broken down by badge (ripe, ripening, overripe, too-late, neutral), trending symbols, and newly ripe signals that just crossed the threshold.
---
See which signals actually played out: winners and losers with real entry prices, current prices, percentage moves, and milestone returns over multiple time horizons.
Example prompts:
How to run:
python3 scripts/bf-movers.py # Default: last 7 days, top 5
python3 scripts/bf-movers.py --days 30 --limit 10 # Last 30 days, top 10
python3 scripts/bf-movers.py --days 1 --limit 3 # Today's movers
What you get back: Winners and losers sections, each showing symbol, percentage change, entry price, current price, and milestone returns (1d, 3d, 5d, 10d). Summary line with calculated win rate for the period.
---
...
安装 香蕉农 后,可以对 AI 说这些话来触发它
Help me get started with Banana Farmer
Explains what Banana Farmer does, walks through the setup, and runs a quick demo based on your current project
Use Banana Farmer to stock momentum scanner and portfolio intelligence
Invokes Banana Farmer with the right parameters and returns the result directly in the conversation
What can I do with Banana Farmer in my finance & investment workflow?
Lists the top use cases for Banana Farmer, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/banana-farmer/ 目录(个人级,所有项目可用),或 .claude/skills/banana-farmer/(项目级)。重启 AI 客户端后,用 /banana-farmer 主动调用,或让 AI 根据上下文自动发现并使用。
香蕉农 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
香蕉农 可免费安装使用。请查阅仓库了解许可证信息。
股票动量扫描仪和投资组合智能。查找任何股票行情,了解动量分数、RSI、线圈突破模式和人工智能分析。扫描 6,500 多只股票和加密货币的主要信号。通过实时警报跟踪投资组合持有情况。市场脉搏、行业趋势、赢/输证明数据和风险评估
香蕉农 属于「Finance & Investment」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my finance & investment tasks using Banana Farmer
Identifies repetitive steps in your workflow and sets up Banana Farmer to handle them automatically