โ† All skills
Tencent SkillHub ยท Developer Tools

Alpaca Markets CLI

This skill provides integration with the Alpaca Markets API for trading stocks, options, and cryptocurrencies. Use it when you need to interact with Alpaca's...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

This skill provides integration with the Alpaca Markets API for trading stocks, options, and cryptocurrencies. Use it when you need to interact with Alpaca's...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
.github/workflows/validate-registry-metadata.yml, README.md, SKILL.md, agents/openai.yaml, references/api_reference.md, registry-metadata.json

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 7 sections Open source page

Overview

This skill enables programmatic access to Alpaca Markets for automated trading, portfolio management, and market data retrieval via their REST API. It supports both live and paper trading accounts for stocks, options, and crypto.

Authentication

To use the Alpaca API, you need an API key and secret. Obtain these from your Alpaca account dashboard. Paper trading: https://paper-api.alpaca.markets Live trading: https://api.alpaca.markets Set environment variables: ALPACA_API_KEY ALPACA_API_SECRET ALPACA_BASE_URL (optional; defaults to paper trading URL)

Security / Credential Use

Use paper trading credentials by default. Do not use live trading credentials until you have audited the code path you plan to run. Keep ALPACA_BASE_URL unset unless you intentionally need a non-default environment. Consider running the helper scripts in an isolated container or VM during evaluation.

Example Usage

Place a stock or crypto order: POST /v2/orders Fetch account balance: GET /v2/account Get positions (stocks/options/crypto): GET /v2/positions List orders: GET /v2/orders

Trading API

Get Account: GET /v2/account Place Order: POST /v2/orders (stocks, options, crypto) List Orders: GET /v2/orders Get Order: GET /v2/orders/{order_id} Replace Order: PATCH /v2/orders/{order_id} Cancel Order: DELETE /v2/orders/{order_id} Cancel All Orders: DELETE /v2/orders Get Positions: GET /v2/positions Close Position: DELETE /v2/positions/{symbol} Close All Positions: DELETE /v2/positions Get Assets: GET /v2/assets

Market Data

Use Alpaca Market Data API endpoints for crypto quotes and bars (see references/api_reference.md).

Included Files

scripts/alpaca_api.py: command-line helper for calling Alpaca endpoints with robust error handling and exit codes. scripts/example.py: sample script showing account and order calls. agents/openai.yaml: Clawhub/OpenClaw interface manifest for display name and default prompt metadata. references/api_reference.md: concise endpoint reference and payload examples.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs3 Config
  • SKILL.md Primary doc
  • README.md Docs
  • references/api_reference.md Docs
  • .github/workflows/validate-registry-metadata.yml Config
  • agents/openai.yaml Config
  • registry-metadata.json Config