Alphameta orders
AlphaMeta is an IBKR (Interactive Brokers) trading tool providing real-time market data for stocks, options, futures, and crypto via a standardized REST API.
npx -y skills add intelliscale/alphameta-skills --skill alphameta-ordersAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Place, modify, and cancel orders via AlphaMeta (IBKR REST API). Supports stocks, options, and multi-leg combo orders (rolls, spreads, straddles, iron condors, butterflies). Use when: "下单", "买入", "卖出", "市价单", "限价单", "取消订单", "改单", "对冲", "roll", "spread", "straddle", "butterfly", "condor", "place order", "buy", "sell", "modify order", "cancel order", "options spread".
SKILL.md
2.1 KB, as published. Nobody here has run it
AlphaMeta Order
Response language: match the user's input language (Simplified Chinese / Traditional Chinese / English).
⚠️ Critical Rule
Always get confirmation before executing any orders!!!
See the alphameta skill for server setup and command execution syntax.
Command Index
| Category | Commands | Use For |
|---|---|---|
| Order Management | buy, limit, fast, evict, expand, cancel, modify, scale | Place/modify/cancel orders |
| Multi-Leg Orders | bto, sto, btc, stc + ratios + OCC | Roll, spread, straddle, condor, butterfly |
Key Concepts
OCC Format (Critical)
Options OCC format: SYMBOL + YYMMDD + C|P + 8-DIGIT_STRIKE
# WRONG: strike × 100
GLD260501P00044000 ← 440×100=44000 (wrong!)
# CORRECT: strike × 1000, pad to 8 digits
GLD260501P00440000 ← 440×1000=440000 → 00440000 ✓
Buy vs Sell
No
sellcommand — use negative quantity.buy AAPL -100= sell 100 shares
Preview Before Execution
Always preview to check margin impact:
buy NVDA260501C00175000 1 AF @ 5.00 preview
Multi-Leg Syntax
buy "<leg1> <ratio1> <occ1> <leg2> <ratio2> <occ2>" <qty> AF @ <net_price>
| Leg | Meaning |
|---|---|
bto | Buy to Open |
sto | Sell to Open |
btc | Buy to Close |
stc | Sell to Close |
For full reference, see references/ref-orders.md and references/ref-multi-leg.md.