alpaca-tradingExecute trades, analyze markets, and manage portfolios using apcacli command-line tool for Alpaca's Trading API. Use when the user wants to trade stocks, ETF...
Install via ClawdBot CLI:
clawdbot install lacymorrow/alpaca-tradingExecute trades and manage portfolios through the apcacli command-line tool for Alpaca's Trading API.
apcacli is a Rust CLI. Install it cross-platform:
brew install rustup
rustup-init -y
source "$HOME/.cargo/env"
cargo install apcacli
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
source "$HOME/.cargo/env"
cargo install apcacli
cargo install apcacliexport APCA_API_KEY_ID='your-key-id'
export APCA_API_SECRET_KEY='your-secret-key'
# For live trading (default is paper):
# export APCA_API_BASE_URL='https://api.alpaca.markets'
You are an expert in using apcacli for command-line stock trading. Your goal is to help users trade stocks, ETFs, options, and crypto efficiently through Alpaca's API while emphasizing safety and best practices.
When helping users with trading tasks:
apcacli is a Rust-based CLI for interacting with Alpaca's trading platform. It provides:
Use this skill when the user wants to:
Common trigger phrases:
When NOT to use this skill:
# Using Cargo (Rust package manager)
cargo install apcacli
# Verify installation
apcacli --help
Requirements:
For Paper Trading (Recommended for testing):
export APCA_API_KEY_ID='your_paper_key_id'
export APCA_API_SECRET_KEY='your_paper_secret_key'
# Paper trading is the default, no need to set APCA_API_BASE_URL
For Live Trading:
export APCA_API_BASE_URL='https://api.alpaca.markets'
export APCA_API_KEY_ID='your_live_key_id'
export APCA_API_SECRET_KEY='your_live_secret_key'
Get API Credentials:
View account details:
apcacli account get
Shows account status, cash balance, buying power, equity, and margin information.
View account activity:
apcacli account activity
Displays recent account activity including trades, dividends, and transfers.
Update account configuration:
apcacli account config <options>
Modify account settings (use --help for available options).
Submit a market order:
# Buy with dollar amount
apcacli order submit buy AAPL --value 1000
# Buy specific quantity
apcacli order submit buy AAPL --quantity 10
# Sell shares
apcacli order submit sell TSLA --quantity 5
Submit a limit order:
# Buy at specific price
apcacli order submit buy MSFT --quantity 10 --limit-price 420
# Sell at specific price
apcacli order submit sell NVDA --quantity 20 --limit-price 850
Submit advanced orders:
# Stop order
apcacli order submit sell AAPL --quantity 10 --stop-price 180
# Stop-limit order
apcacli order submit sell TSLA --quantity 5 --stop-price 800 --limit-price 795
# Trailing stop order (percentage)
apcacli order submit sell NVDA --quantity 10 --trail-percent 5
List all orders:
apcacli order list
Shows all orders with their status (open, filled, cancelled, etc.).
Get specific order details:
apcacli order get <ORDER_ID>
Displays comprehensive order information including timestamps, pricing, and status.
Cancel an order:
apcacli order cancel <ORDER_ID>
Cancels a pending order by its ID.
Cancel all orders:
apcacli order cancel-all
Cancels all open orders.
List all open positions:
apcacli position list
Shows all open positions with:
Get specific position:
apcacli position get <SYMBOL>
Displays detailed information for a specific position.
Close a position:
# Close entire position
apcacli position close <SYMBOL>
# Close partial position
apcacli position close <SYMBOL> --quantity 5
Close all positions:
apcacli position close-all
Closes all open positions.
List available assets:
apcacli asset list
Shows all tradeable assets.
Get asset details:
apcacli asset get <SYMBOL>
Displays asset information including exchange, class, and tradability status.
Search for assets:
apcacli asset search <QUERY>
Searches for assets matching the query.
Check market clock:
apcacli market clock
Shows current market status (open/closed), next open time, and next close time.
Stream account updates:
apcacli stream account
Monitors real-time account events including order updates and fills.
Stream trade updates:
apcacli stream trades
Monitors real-time trade events for your positions.
apcacli order get to verify order detailsapcacli position listapcacli --help for detailed optionsapcacli market clock before placing ordersSimple stock purchase:
# 1. Check account balance
apcacli account get
# 2. Verify asset is tradeable
apcacli asset get AAPL
# 3. Check market is open
apcacli market clock
# 4. Submit market order
apcacli order submit buy AAPL --value 1000
# 5. Verify position
apcacli position list
Limit order with monitoring:
# 1. Submit limit order
apcacli order submit buy MSFT --quantity 10 --limit-price 420
# 2. Save the returned ORDER_ID
# 3. Check order status
apcacli order get <ORDER_ID>
# 4. If needed, cancel
apcacli order cancel <ORDER_ID>
Portfolio review:
# 1. View all positions
apcacli position list
# 2. Check account summary
apcacli account get
# 3. Review recent activity
apcacli account activity
Close position with stop loss:
# 1. Check current position
apcacli position get AAPL
# 2. Set trailing stop to protect profits
apcacli order submit sell AAPL --quantity 10 --trail-percent 5
# 3. Monitor the order
apcacli order list
| Task | Command |
|------|---------|
| View account | apcacli account get |
| Account activity | apcacli account activity |
| Buy stock (market) | apcacli order submit buy SYMBOL --value AMOUNT |
| Buy stock (limit) | apcacli order submit buy SYMBOL --quantity N --limit-price PRICE |
| Sell stock | apcacli order submit sell SYMBOL --quantity N |
| List all orders | apcacli order list |
| Get order details | apcacli order get ORDER_ID |
| Cancel order | apcacli order cancel ORDER_ID |
| Cancel all orders | apcacli order cancel-all |
| List positions | apcacli position list |
| Get position | apcacli position get SYMBOL |
| Close position | apcacli position close SYMBOL |
| Close all positions | apcacli position close-all |
| List assets | apcacli asset list |
| Get asset info | apcacli asset get SYMBOL |
| Check market status | apcacli market clock |
| Stream account events | apcacli stream account |
| Stream trades | apcacli stream trades |
--quantity N - Number of shares to trade--value AMOUNT - Dollar amount to invest (for market orders)--limit-price PRICE - Limit price for limit orders--stop-price PRICE - Stop price for stop orders--trail-percent N - Trailing stop percentage--trail-amount AMOUNT - Trailing stop dollar amountMarket Order - Executes immediately at current market price
apcacli order submit buy AAPL --quantity 10
Limit Order - Executes only at specified price or better
apcacli order submit buy AAPL --quantity 10 --limit-price 185
Stop Order - Converts to market order when stop price is reached
apcacli order submit sell AAPL --quantity 10 --stop-price 180
Stop-Limit Order - Converts to limit order when stop price is reached
apcacli order submit sell AAPL --quantity 10 --stop-price 180 --limit-price 179
Trailing Stop - Stop price follows market by specified percentage or amount
# Percentage-based
apcacli order submit sell AAPL --quantity 10 --trail-percent 5
# Dollar-based
apcacli order submit sell AAPL --quantity 10 --trail-amount 10
cargo install apcacliAPCA_API_KEY_ID and APCA_API_SECRET_KEY are requiredAPCA_API_BASE_URL for live trading# Error: "Missing APCA_API_KEY_ID"
# Solution: Export required environment variables
export APCA_API_KEY_ID='your_key'
export APCA_API_SECRET_KEY='your_secret'
# Error: "apcacli: command not found"
# Solution: Install apcacli
cargo install apcacli
# Verify installation
which apcacli
Generate shell completion for faster command entry:
# Install completion script
cargo run --bin=shell-complete > apcacli.bash
source apcacli.bash
# Now you can use tab completion
apcacli order <TAB>
Use streaming commands to monitor account activity in real-time:
# Terminal 1: Monitor account events
apcacli stream account
# Terminal 2: Execute trades
apcacli order submit buy AAPL --value 1000
# Watch the fill notification appear in Terminal 1
Combine apcacli with shell scripts for automated strategies:
#!/bin/bash
# Example: Daily portfolio check script
echo "=== Daily Portfolio Report ==="
echo ""
echo "Account Status:"
apcacli account get
echo ""
echo "Open Positions:"
apcacli position list
echo ""
echo "Recent Activity:"
apcacli account activity
ā ļø IMPORTANT:
apcacli created by d-e-s-o
Built on the apca Rust crate for Alpaca API interactions.
Generated Mar 1, 2026
A retail trader uses the skill to execute quick trades based on technical analysis, managing positions and orders throughout market hours. They rely on real-time commands to buy/sell stocks and crypto, check portfolio performance, and set stop losses to mitigate risk.
A manager oversees client portfolios by using the skill to automate trading workflows, analyze market data, and monitor account activity. They execute batch orders for ETFs and options, ensuring compliance and efficient risk management through command-line scripts.
A developer integrates the skill into custom trading algorithms to automate strategies, backtest using market data, and manage orders via APIs. They leverage the CLI for rapid prototyping and deployment in paper trading environments before going live.
An online platform uses the skill to teach students hands-on trading by simulating real market conditions with paper trading. Instructors guide learners through executing trades, analyzing portfolios, and understanding order types in a safe, command-line environment.
An individual trades cryptocurrencies alongside traditional assets, using the skill to buy/sell crypto, check balances, and monitor positions across markets. They rely on the CLI for quick access and integration with other financial tools for diversified portfolios.
A subscription-based service offers automated trading tools built on this skill, providing users with pre-built scripts, analytics dashboards, and API integrations. Revenue comes from monthly fees and premium features like advanced order types and real-time alerts.
A consultancy helps businesses implement and customize the skill for specific trading needs, such as developing bespoke algorithms or integrating with existing systems. Revenue is generated through project-based contracts and ongoing support fees.
An organization creates courses, tutorials, and certifications around using the skill for trading, targeting beginners and professionals. Revenue streams include course sales, certification exams, and partnership deals with financial institutions.
š¬ Integration Tip
Ensure environment variables are securely managed and test commands in paper trading mode first to avoid live trading errors.
Analyze stocks and cryptocurrencies using Yahoo Finance data. Supports portfolio management, watchlists with alerts, dividend analysis, 8-dimension stock scoring, viral trend detection (Hot Scanner), and rumor/early signal detection. Use for stock analysis, portfolio tracking, earnings reactions, crypto monitoring, trending stocks, or finding rumors before they hit mainstream.
Get stock prices, quotes, fundamentals, earnings, options, dividends, and analyst ratings using Yahoo Finance. Uses yfinance library - no API key required.
Yahoo Finance (yfinance) powered stock analysis skill: quotes, fundamentals, ASCII trends, high-resolution charts (RSI/MACD/BB/VWAP/ATR), plus optional web a...
Become an autonomous prediction market trader on Polymarket with AI-powered analysis and a performance-backed token on Base. Trade real markets, build a track record, and let the buyback flywheel run.
Get cryptocurrency token price and generate candlestick charts via CoinGecko API or Hyperliquid API. Use when user asks for token price, crypto price, price chart, or cryptocurrency market data.
Trade and monitor Hyperliquid perpetual futures. Check balances, view positions with P&L, place/cancel orders, execute market trades. Use when the user asks about Hyperliquid trading, portfolio status, crypto positions, or wants to execute trades on Hyperliquid.