Trade stocks and crypto via Alpaca API. Use for market data (quotes, bars, news), placing orders (market, limit, stop), checking positions, portfolio management, and account info. Supports both paper and live trading. Use when user asks about stock prices, wants to buy/sell securities, check portfolio, or manage trades.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install alpaca或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install alpaca⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/alpaca/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: alpaca description: Trade stocks and crypto via Alpaca API. Use for market data (quotes, bars, news), placing orders (market, limit, stop), checking positions, portfolio management, and account info. Supports both paper and live trading. Use when user asks about stock prices, wants to buy/sell securities, check portfolio, or manage trades. ---
Trade stocks and crypto programmatically via Alpaca's API.
Requires API credentials stored in environment or config:
# Set environment variables
export ALPACA_API_KEY="your-api-key"
export ALPACA_SECRET_KEY="your-secret-key"
export ALPACA_PAPER="true" # "true" for paper, "false" for live
Or store in ~/.openclaw/credentials/alpaca.json:
{
"apiKey": "your-api-key",
"secretKey": "your-secret-key",
"paper": true
}
python3 scripts/alpaca_cli.py quote AAPL
python3 scripts/alpaca_cli.py quote AAPL,TSLA,NVDA
python3 scripts/alpaca_cli.py bars AAPL --timeframe 1Day --limit 10
python3 scripts/alpaca_cli.py bars AAPL --timeframe 1Hour --start 2026-02-01
python3 scripts/alpaca_cli.py account
python3 scripts/alpaca_cli.py positions
# Market order
python3 scripts/alpaca_cli.py order buy AAPL 10
# Limit order
python3 scripts/alpaca_cli.py order buy AAPL 10 --limit 150.00
# Stop order
python3 scripts/alpaca_cli.py order sell TSLA 5 --stop 200.00
# Stop-limit order
python3 scripts/alpaca_cli.py order sell TSLA 5 --stop 200.00 --limit 195.00
# Skip price validation (use with caution)
python3 scripts/alpaca_cli.py order buy AAPL 10 --limit 999.00 --force
Order Guardrails:
- Pre-market (4:00 AM - 9:30 AM ET): Option to place pre-market order - After-hours (4:00 PM - 8:00 PM ET): Option to place after-hours order - Closed: Warns order will queue until market open
Use --force to skip all confirmation prompts (use with caution).
python3 scripts/alpaca_cli.py orders
python3 scripts/alpaca_cli.py orders --status open
python3 scripts/alpaca_cli.py orders --status closed --limit 20
python3 scripts/alpaca_cli.py cancel ORDER_ID
python3 scripts/alpaca_cli.py cancel all # Cancel all open orders
python3 scripts/alpaca_cli.py news AAPL
python3 scripts/alpaca_cli.py news AAPL,TSLA --limit 5
python3 scripts/alpaca_cli.py watchlist list
python3 scripts/alpaca_cli.py watchlist create "Tech Stocks" AAPL,MSFT,GOOGL
python3 scripts/alpaca_cli.py watchlist add WATCHLIST_ID NVDA
python3 scripts/alpaca_cli.py watchlist delete WATCHLIST_ID
# Stream trades (default)
python3 scripts/alpaca_cli.py stream AAPL
# Stream quotes
python3 scripts/alpaca_cli.py stream AAPL,TSLA --type quotes
# Stream bars (1-min)
python3 scripts/alpaca_cli.py stream NVDA --type bars
# Stream all data types
python3 scripts/alpaca_cli.py stream AAPL --type all
Press Ctrl+C to stop streaming.
# Add alert - notify when INTU drops below $399
python3 scripts/alpaca_cli.py alert add --symbol INTU --price 399 --condition below
# Add alert - notify when AAPL goes above $300
python3 scripts/alpaca_cli.py alert add --symbol AAPL --price 300 --condition above
# List active alerts
python3 scripts/alpaca_cli.py alert list
# Check alerts (used by cron)
python3 scripts/alpaca_cli.py alert check
# Remove an alert
python3 scripts/alpaca_cli.py alert remove --alert_id ABC123
# Clear all alerts
python3 scripts/alpaca_cli.py alert clear
Alerts are stored in ~/.openclaw/data/alpaca-alerts.json.
All commands use: scripts/alpaca_cli.py (relative to this skill directory)
See references/api.md for detailed API documentation and response formats.
ALPACA_PAPER=true) recommended for testing安装 Alpaca Trading 后,可以对 AI 说这些话来触发它
Help me get started with Alpaca Trading
Explains what Alpaca Trading does, walks through the setup, and runs a quick demo based on your current project
Use Alpaca Trading to trade stocks and crypto via Alpaca API
Invokes Alpaca Trading with the right parameters and returns the result directly in the conversation
What can I do with Alpaca Trading in my finance & investment workflow?
Lists the top use cases for Alpaca Trading, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/alpaca/ 目录(个人级,所有项目可用),或 .claude/skills/alpaca/(项目级)。重启 AI 客户端后,用 /alpaca 主动调用,或让 AI 根据上下文自动发现并使用。
Alpaca Trading 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Alpaca Trading 可免费安装使用。请查阅仓库了解许可证信息。
Trade stocks and crypto via Alpaca API. Use for market data (quotes, bars, news), placing orders (market, limit, stop), checking positions, portfolio management, and account info. Supports both paper and live trading. Use when user asks about stock prices, wants to buy/sell securities, check portfolio, or manage trades.
Alpaca Trading 属于「Finance & Investment」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my finance & investment tasks using Alpaca Trading
Identifies repetitive steps in your workflow and sets up Alpaca Trading to handle them automatically