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 ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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.
| 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.