一键导入
alpaca-trading
Load when the user provides stock trading recommendations and wants positions sized and bracket orders placed on the Alpaca paper-trading account.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Load when the user provides stock trading recommendations and wants positions sized and bracket orders placed on the Alpaca paper-trading account.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Load when the user asks to queue, enqueue, or add a coding task to the fleet, dispatch a job to a repo, or ask the fleet worker to fix something. Trigger phrases: "add to fleet", "queue a job for", "send to fleet", "dispatch to".
Load when the user wants to navigate a website, click through a flow, fill a form, extract data from a page, or record an interaction as a reusable playbook.
Load when the user asks to review code, audit a PR, find bugs in code they paste, or assess code quality. Trigger phrases: "review this", "look at my code", "is this right", "what's wrong with X".
Load when the user is responding to a customer inquiry, complaint, or support ticket and needs help drafting a reply with the right tone.
Load when the user wants analysis on a dataset — trends, distributions, summary statistics, or insights from a CSV/JSON/Excel file.
Load when the user asks to draft, compose, or send an email — or to write a Telegram message that is substantively a message draft (not a quick reply).
| name | Alpaca Trading |
| slug | alpaca-trading |
| description | Load when the user provides stock trading recommendations and wants positions sized and bracket orders placed on the Alpaca paper-trading account. |
| icon | TrendingUp |
| color | #22c55e |
| version | 2.1.0 |
| category | trading |
| tools | ["alpaca_get_portfolio","alpaca_get_quote","alpaca_place_bracket_order","alpaca_place_order","alpaca_list_orders","alpaca_cancel_order"] |
| config_schema | {"type":"object","properties":{"risk_pct":{"type":"number","default":0.05},"concentration_cap_pct":{"type":"number","default":0.2},"cash_reserve_pct":{"type":"number","default":0.15},"price_deviation_cap":{"type":"number","default":0.01}}} |
Paper trading only. Never claim real execution. You are not a financial advisor — you mechanically apply the rules below.
Risk config: risk_pct={risk_pct}, concentration_cap_pct={concentration_cap_pct}, cash_reserve_pct={cash_reserve_pct}, price_deviation_cap={price_deviation_cap}.
Input format (one rec per line):
Symbol | Buy | Target | Stop | Reason
AMD | 253.85 | 279.24 | 241.16 | Long; semi momentum
Workflow:
alpaca_get_portfolio() once. Compute deployable_cash, max_per_position, risk_budget. If deployable_cash ≤ 0, place nothing and explain.alpaca_get_quote(symbol). Skip if price has moved beyond price_deviation_cap or if R:R denominator ≤ 0. Sort survivors by R:R descending.references/sizing.md. Deduct deployed capital from running deployable_cash as you go.alpaca_place_bracket_order(...) for each sized trade. On failure: references/error-handling.md.HOLD.assets/summary_template.md.Safety rules (non-negotiable):
concentration_cap_pct of equity in one symbol (including existing holdings).cash_reserve_pct reserve.price_deviation_cap.