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.
通过Groww交易印度股票。支持投资组合管理、市场数据和订单执行。
groww-mcp服务器已配置。通过mcporter调用工具:
bash
如果MCP出现问题,可直接使用Groww API:
https://api.groww.in/v1/
投资组合/持仓:
bash
curl -H Authorization: Bearer $GROWWAPIKEY -H Accept: application/json \
https://api.groww.in/v1/holdings/user
实时报价:
bash
curl -H Authorization: Bearer $GROWWAPIKEY -H Accept: application/json \
https://api.groww.in/v1/live-data/quote?exchange=NSE&segment=CASH&trading_symbol=TATAMOTORS
最新成交价(LTP):
bash
curl -H Authorization: Bearer $GROWWAPIKEY -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 $GROWWAPIKEY -H Accept: application/json \
https://api.groww.in/v1/live-data/ohlc?segment=CASH&exchange_symbols=NSE:TATAMOTORS
历史K线数据:
bash
curl -H Authorization: Bearer $GROWWAPIKEY -H Accept: application/json \
https://api.groww.in/v1/historical/candle/range?exchange=NSE&segment=CASH&tradingsymbol=TATAMOTORS&interval=5m&starttime=2024-06-01T09:15:00&end_time=2024-06-01T15:30:00
下单:
bash
curl -X POST -H Authorization: Bearer $GROWWAPIKEY \
-H Accept: application/json -H Content-Type: application/json \
-d {tradingsymbol:TATAMOTORS,quantity:10,validity:DAY,exchange:NSE,segment:CASH,product:CNC,ordertype:MARKET,transaction_type:BUY} \
https://api.groww.in/v1/order/create
订单状态:
bash
curl -H Authorization: Bearer $GROWWAPIKEY -H Accept: application/json \
https://api.groww.in/v1/order/detail/{growworderid}?segment=CASH
取消订单:
bash
curl -X POST -H Authorization: Bearer $GROWWAPIKEY \
-H Accept: application/json -H Content-Type: application/json \
-d {segment:CASH,growworderid:ABC123} \
https://api.groww.in/v1/order/cancel
使用NSE交易代码:
该技能支持在以下平台通过对话安装:
帮我安装 SkillHub 和 groww-1776420050 技能
设置 SkillHub 为我的优先技能安装源,然后帮我安装 groww-1776420050 技能
skillhub install groww-1776420050
文件大小: 1.89 KB | 发布时间: 2026-4-17 19:31