Alphameta portfolio
Skill intelliscale/alphameta-skills/skills/alphameta-portfolio
Account-level analysis via IBKR (Interactive Brokers) — positions, P&L, balance, margin, leverage ratio, buying power, and execution history. Distinguishes long vs short positions, shows real-time unrealized/realized P&L, and computes account-level leverage ratio. Triggers: "查持仓", "账户余额", "保证金率", "杠杆率", "多头", "空头", "盈亏", "账户概览", "账户表现", "持仓明细", "我的仓位", "positions", "portfolio", "balance", "leverage", "margin", "P&L", "net liquidation", "buying power", "long positions", "short positions", "my account".From its SKILL.md
npx -y skills add intelliscale/alphameta-skills --skill alphameta-portfolioAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things 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.
- runs commandsInstructs the agent to run 1 command, including `alphameta start`.
SKILL.md
5.4 KB, ~1.5k tokens by cl100k_base, as published. Nobody here has run it
AlphaMeta Portfolio
Retrieve and analyze your IBKR account — balance, positions, P&L, margin, and leverage ratio. Designed for account-level health checks, not per-symbol technical analysis.
When to Use
- Account overview, balance, margin, buying power
- Position details (long/short, quantity, market value, P&L)
- Account-level leverage ratio
- Order and execution history
Workflow
- Verify the AlphaMeta service is running (
/healthendpoint). - Determine what the user wants — balance overview, positions detail, or full account report.
- Run the relevant command(s) via
/api/v1/execute:balancefor net liquidation, cash, buying power, available fundspositionsfor all positions with dollar values and P&Lordersandexecutionsfor open orders and trade historyreportfor trading report (requires local OrderMgr logs)
- Compute leverage:
sum of all position dollarValue / NetLiquidation. - Format the response using the template below.
Common Rationalizations
| Rationalization | Reality |
|---|---|
| "I'll skip computing leverage, user didn't ask" | Leverage is the key risk metric. Always compute it: sum(dollarValue) / NetLiquidation. |
| "marketValue is easier, I'll use that" | dollarValue is notional exposure. marketValue gives wrong leverage. Must use dollarValue. |
| "I'll just pass through the raw JSON" | Raw output is unreadable. Always format using the Output template. |
Red Flags
- Single position > 30% of total notional — likely over-concentrated, flag to the user
- Leverage > 2.0x — high margin usage, highlight as a warning
- Using
marketValueinstead ofdollarValuein leverage calculation — wrong result - Missing currency labels or disclaimer — output is incomplete
Output
Present results in markdown-native tables. Balance as a summary table, positions grouped by underlying symbol in a flat table where the Group column marks group boundaries (empty = continuation of same group).
Balance
| Metric | Value |
|---|---|
| Net Liquidation | $XXX,XXX |
| Cash | $XXX,XXX |
| Buying Power | $XXX,XXX |
| Available Funds | $XXX,XXX |
Positions (grouped by symbol)
| Group | Leg | Qty | Notional | Mkt Value | P&L | Theta | Return |
|---|---|---|---|---|---|---|---|
| NVDA (22.4%) | 5/15 190P | -1 | $386 | -$14 | +$300 | +7 | +95% |
| 5/15 200P | -1 | $1,024 | -$36 | +$246 | +13 | +87% | |
| 6/18 185P | -6 | $14,972 | -$1,338 | +$2,825 | +51 | +68% | |
| MSFT (19.4%) | 5/15 380P | -2 | $2,128 | -$42 | +$2,307 | +22 | +98% |
| 5/15 390P | -1 | $2,516 | -$47 | +$1,442 | +21 | +97% | |
| 5/15 400P | -2 | $13,933 | -$286 | +$1,412 | +85 | +83% | |
| PLTR (5.3%, 3s 3l) | 5/15 C160 | +1 | $333 | +$6 | -$530 | -6 | -99% |
| 5/15 P130 | -1 | $2,435 | -$117 | +$217 | +26 | +65% | |
| 6/18 C135 | +1 | $7,890 | +$861 | -$235 | -12 | -21% | |
| DRAM (1.2%, 1s 1l) | 6/18 P38 | +10 | $4,095 | +$807 | -$460 | -29 | -36% bearish |
| 6/18 P42 | -10 | $7,363 | -$1,569 | +$874 | +47 | +36% |
Always label currency. Sort groups by absolute notional descending. Group header shows % of total portfolio notional. For groups with mixed long/short positions, append Ns Ml (N short legs, M long legs). Highlight the largest gainers and losers.
Default market direction is bullish (not labeled). Only label legs that are bearish with **bearish** — determined by: (PC == 'P' AND position > 0) for long puts, or (PC == 'C' AND position < 0) for short calls.
See the alphameta skill for server setup and command execution syntax.
Command Index
| Category | Commands | Use For |
|---|---|---|
| Portfolio | balance, positions, orders, executions, report | Portfolio analysis, margin check |
Key Concepts
Leverage Calculation
Leverage Ratio = Σ(dollarValue) / NetLiquidation
- Use
dollarValueNOTmarketValuefor leverage (dollarValue is notional) reportrequires local logs from OrderMgr
Key Fields
| Field | Description |
|---|---|
NetLiquidation | Total equity |
dollarValue | Position notional value (for leverage) |
BuyingPower | Margin buying power |
AvailableFunds | Available for new orders |
For full reference, see references/ref-portfolio.md.
Error Handling
| Situation | Reply |
|---|---|
| Service not running (health check fails) | Start the service: alphameta start |
| Empty positions | No open positions |
| Command returns error | Surface the error message verbatim |
Related Skills
- "What's this stock's current price?" →
alphameta-market-data - "What are the Greeks for this option?" →
alphameta-technical - "Close this position" →
alphameta-trading - "Set a stop-loss if X drops below Y" →
alphameta-predicate
What ships with it: 1 file
1.1 KB alongside SKILL.md
references/
- ref-portfolio.md1.1 KB