返回顶部
g

groww

Trade stocks and manage portfolio on Groww (Indian broker). Use when user asks about Indian stocks, NSE/BSE prices, portfolio holdings, placing buy/sell orders, checking order status, or any Groww-related trading queries. Supports live quotes, LTP, OHLC, historical candles, and order management.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
814
下载量
0
收藏
概述
安装方式
版本历史

groww

# Groww Trading Trade Indian stocks via Groww. Supports portfolio management, market data, and order execution. ## Setup 1. Get API key from Groww app: Stocks → Settings → API Trading → Generate API key 2. Add to OpenClaw config: ```bash openclaw configure # Add env: GROWW_API_KEY=your_key_here ``` ## MCP Server Usage The groww-mcp server is configured. Call tools via mcporter: ```bash # Portfolio mcporter call groww-mcp.portfolio # Market data mcporter call groww-mcp.market-data action=live-quote symbol=TATAMOTORS mcporter call groww-mcp.market-data action=ltp symbols=TATAMOTORS,RELIANCE mcporter call groww-mcp.market-data action=ohlc symbol=TCS # Orders mcporter call groww-mcp.place_order symbol=TATAMOTORS quantity=10 side=BUY type=MARKET mcporter call groww-mcp.order_status orderId=ABC123 mcporter call groww-mcp.cancel_order orderId=ABC123 ``` ## Direct API (Alternative) If MCP has issues, use the Groww API directly: ### Base URL ``` https://api.groww.in/v1/ ``` ### Headers ```bash Authorization: Bearer $GROWW_API_KEY Accept: application/json Content-Type: application/json ``` ### Endpoints **Portfolio/Holdings:** ```bash curl -H "Authorization: Bearer $GROWW_API_KEY" -H "Accept: application/json" \ "https://api.groww.in/v1/holdings/user" ``` **Live Quote:** ```bash curl -H "Authorization: Bearer $GROWW_API_KEY" -H "Accept: application/json" \ "https://api.groww.in/v1/live-data/quote?exchange=NSE&segment=CASH&trading_symbol=TATAMOTORS" ``` **LTP (Last Traded Price):** ```bash curl -H "Authorization: Bearer $GROWW_API_KEY" -H "Accept: application/json" \ "https://api.groww.in/v1/live-data/ltp?segment=CASH&exchange_symbols=NSE:TATAMOTORS,NSE:RELIANCE" ``` **OHLC:** ```bash curl -H "Authorization: Bearer $GROWW_API_KEY" -H "Accept: application/json" \ "https://api.groww.in/v1/live-data/ohlc?segment=CASH&exchange_symbols=NSE:TATAMOTORS" ``` **Historical Candles:** ```bash curl -H "Authorization: Bearer $GROWW_API_KEY" -H "Accept: application/json" \ "https://api.groww.in/v1/historical/candle/range?exchange=NSE&segment=CASH&trading_symbol=TATAMOTORS&interval=5m&start_time=2024-06-01T09:15:00&end_time=2024-06-01T15:30:00" ``` **Place Order:** ```bash curl -X POST -H "Authorization: Bearer $GROWW_API_KEY" \ -H "Accept: application/json" -H "Content-Type: application/json" \ -d '{"trading_symbol":"TATAMOTORS","quantity":10,"validity":"DAY","exchange":"NSE","segment":"CASH","product":"CNC","order_type":"MARKET","transaction_type":"BUY"}' \ "https://api.groww.in/v1/order/create" ``` **Order Status:** ```bash curl -H "Authorization: Bearer $GROWW_API_KEY" -H "Accept: application/json" \ "https://api.groww.in/v1/order/detail/{groww_order_id}?segment=CASH" ``` **Cancel Order:** ```bash curl -X POST -H "Authorization: Bearer $GROWW_API_KEY" \ -H "Accept: application/json" -H "Content-Type: application/json" \ -d '{"segment":"CASH","groww_order_id":"ABC123"}' \ "https://api.groww.in/v1/order/cancel" ``` ## Stock Symbols Use NSE trading symbols: - TATAMOTORS, RELIANCE, TCS, INFY, HDFCBANK - WIPRO, ICICIBANK, SBIN, BHARTIARTL, ITC ## Market Hours - Pre-open: 9:00 - 9:15 AM IST - Trading: 9:15 AM - 3:30 PM IST - Monday to Friday (except holidays) ## Example Queries - "Show my Groww portfolio" - "What's TATAMOTORS price?" - "Buy 10 RELIANCE shares" - "Sell 5 TCS at limit 4200" - "Cancel order ABC123" - "Get historical data for INFY"

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 groww-1776420050 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 groww-1776420050 技能

通过命令行安装

skillhub install groww-1776420050

下载 Zip 包

⬇ 下载 groww v1.0.0

文件大小: 1.89 KB | 发布时间: 2026-4-17 19:31

v1.0.0 最新 2026-4-17 19:31
Initial release of Groww trading skill.

- Enables trading of Indian stocks on Groww, including portfolio management and order execution.
- Supports retrieval of live quotes, LTP, OHLC, and historical market data for NSE/BSE stocks.
- Allows viewing holdings, placing/cancelling orders, and checking order status via MCP commands or direct API calls.
- Provides setup instructions for API key authentication.
- Includes usage examples for common trading and portfolio queries.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部