portfolio
Show current portfolio — positions, holdings, funds, and P&L. Works in both paper and live mode.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Show current portfolio — positions, holdings, funds, and P&L. Works in both paper and live mode.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
AI-powered options selling — analyzes option chain, selects optimal OTM strike, calculates risk metrics. Supports NIFTY, BANKNIFTY, stocks.
Run the full 15-agent analysis pipeline using Claude's own reasoning + live market data from MCP tools. Produces BUY/SELL/HOLD with confidence score.
Get real-time stock quote from INDstocks. Use when the user asks for a stock price, LTP, or market data.
Scan market for trading opportunities using Claude's reasoning + live quotes. No external LLM API calls needed.
Full trade workflow — Claude analyzes the stock, validates safety, and executes (paper mode) after user confirmation.
SOC 직업 분류 기준
| name | portfolio |
| description | Show current portfolio — positions, holdings, funds, and P&L. Works in both paper and live mode. |
| user-invocable | true |
Fetch and display the complete portfolio state.
IMPORTANT: Use the Bash tool to call the Python helpers. Do NOT import broker modules directly.
Run these commands to get portfolio data:
python3 -c "
import asyncio, json
from skopaq.mcp_server import get_positions, get_holdings, get_funds
async def main():
p = json.loads(await get_positions())
h = json.loads(await get_holdings())
f = json.loads(await get_funds())
print(json.dumps({'positions': p, 'holdings': h, 'funds': f}, indent=2))
asyncio.run(main())
" 2>/dev/null
Present a clean summary:
Format all amounts in INR (₹) using Indian number system.