Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

quant-trading-apiquant trading API 搜索

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

3,917

周安装

160

GitHub Stars

公开资料未说明

下载量

1,254
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:quant-trading-api(quant trading API 搜索)
来源仓库:https://github.com/jason-aka-chen/quant-trading-api
安装命令:
openclaw skills install quant-trading-api
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install quant-trading-api

简介

中国证券经纪商统一 API 集成支持订单管理与仓位控制。

  • 覆盖华泰、银河、广发、中信建投等主要券商接口规范。
  • 可用于自动化交易系统与风控平台的后端对接开发。quant-trading-api 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装后需按券商要求申请 API Key 并完成鉴权配置。
  • 交易指令发出前应增加二次确认机制防止误操作损失。

SKILL.md

name
quant-trading-api
description
Professional quantitative trading API integration for Chinese securities. Supports major Chinese brokers (华泰, 银河, 广发, 中信建投) with order management, position tracking, real-time market data, and automated trading workflows.
tags
version
1.0.0
author
chenq

Quant Trading API

Professional trading API for Chinese securities brokers.

Supported Brokers

BrokerStatusFeatures
华泰证券 (Huatai)Full API
银河证券 (Galaxy)Full API
广发证券 (GF)Full API
中信建投 (CITIC)Full API
同花顺 (iFinD)通用接口

Features

1. Market Data

  • Real-time Quotes: Level 1/2 market data
  • K-line Data: 1min/5min/15min/30min/60min/Daily
  • Order Book: Top 50 bids/asks
  • Trading Calendar: A-share trading days
  • Market Status: Open/Close/Auction

2. Order Management

  • Place Orders: Limit, Market, Stop orders
  • Cancel Orders: Cancel pending orders
  • Modify Orders: Change order price/qty
  • Order Status: Tracking order lifecycle
  • Order History: Historical order records

3. Position Tracking

  • Real-time Positions: Current holdings
  • Position P&L: Unrealized/realized P&L
  • Trading History: Fill records
  • Daily Trades: Today's transactions

4. Account Management

  • Account Balance: Cash, positions, total assets
  • Margin Info: Margin ratio, available margin
  • Permissions: Market/limit order permissions

5. Automation

  • Scheduled Trading: Time-based execution
  • Conditional Orders: Price/volume triggers
  • Strategy Framework: Built-in strategy runner
  • Risk Controls: Auto-stop loss/take profit

Installation

pip install requests pycryptodome websocket-client

Configuration

# config.py
BROKER_CONFIG = {
    'broker': 'huatai',  # huatai, galaxy, gf, citic, tonghuashun
    'account': '123456789',
    'password': 'your_password',
    'server': 'trade.htsc.com.cn',  # Trading server
    'market': 'sz'  # sh, sz
}

Usage

Initialize Trading API

from quant_trading import TradingAPI

api = TradingAPI(
    broker='huatai',
    account='123456789',
    password='your_password'
)

# Login
api.login()
print(f"Login successful: {api.account_info['account_name']}")

Get Market Data

# Real-time quote
quote = api.get_quote('600519')
print(f"Price: {quote['price']}, Volume: {quote['volume']}")

# K-line data
kline = api.get_kline('000858', period='60min', count=100)
print(kline.tail())

Place Order

# Buy stock
order = api.buy(
    symbol='600519',
    price=1850.0,
    volume=100
)
print(f"Order ID: {order['order_id']}")

# Sell stock
order = api.sell(
    symbol='600519',
    price=1900.0,
    volume=100
)

Order Management

# Cancel order
api.cancel_order(order_id='123456')

# Get order status
status = api.get_order(order_id='123456')
print(f"Status: {status['status']}")

# Get all orders
orders = api.get_orders(status='pending')

Position & Account

# Get positions
positions = api.get_positions()
for pos in positions:
    print(f"{pos['symbol']}: {pos['volume']} shares, P&L: {pos['pnl']}")

# Get account balance
balance = api.get_balance()
print(f"Total Assets: {balance['total_assets']}")
print(f"Available Cash: {balance['available']}")

API Reference

Connection

MethodDescription
login()Login to broker
logout()Logout
heartbeat()Keep connection alive

Market Data

MethodDescription
get_quote(symbol)Get real-time quote
get_kline(symbol, period, count)Get K-line data
get_orderbook(symbol)Get order book
get_trading_calendar(start, end)Get trading days

Orders

MethodDescription
buy(symbol, price, volume)Place buy order
sell(symbol, price, volume)Place sell order
cancel_order(order_id)Cancel order
get_order(order_id)Get order status
get_orders(status)Get all orders

Positions

MethodDescription
get_positions()Get current positions
get_trades()Get today's trades
get_history(start, end)Historical records

Account

MethodDescription
get_balance()Get account balance
get_margin()Get margin info

Advanced Usage

Automated Trading Strategy

from quant_trading import TradingAPI, Strategy

class MomentumStrategy(Strategy):
    def __init__(self, api):
        self.api = api
    
    def on_bar(self, bar):
        # Check signal
        if self.check_signal(bar):
            # Place order
            self.api.buy(bar['symbol'], bar['close'], 100)
    
    def check_signal(self, bar):
        # Your logic
        return bar['volume'] > 1000000

# Run strategy
api = TradingAPI(...)
strategy = MomentumStrategy(api)
api.run_strategy(strategy)

Scheduled Trading

# Execute at specific time
api.schedule_order(
    symbol='600519',
    direction='buy',
    price=1850.0,
    volume=100,
    execute_time='09:35:00'
)

Stop Loss / Take Profit

# Set stop loss
api.set_stop_loss(
    symbol='600519',
    entry_price=1850.0,
    stop_loss_pct=0.05  # 5% stop loss
)

# Set take profit
api.set_take_profit(
    symbol='600519',
    entry_price=1850.0,
    take_profit_pct=0.15  # 15% take profit
)

Error Handling

try:
    order = api.buy('600519', 1850.0, 100)
except OrderError as e:
    print(f"Order failed: {e.message}")
    if e.code == 'INSUFFICIENT_BALANCE':
        print("Insufficient balance")
    elif e.code == 'LIMIT_UP':
        print("Stock hit limit up")
    elif e.code == 'SUSPENDED':
        print("Stock suspended")

Common Error Codes

CodeDescription
SUCCESSOrder successful
INSUFFICIENT_BALANCEInsufficient cash
INSUFFICIENT_POSITIONInsufficient shares
LIMIT_UPStock at limit up
LIMIT_DOWNStock at limit down
SUSPENDEDStock suspended
NOT_TRADINGOutside trading hours
INVALID_PRICEPrice out of range

Best Practices

  1. Connection Management: Reconnect on failure
  2. Rate Limiting: Don't exceed API limits
  3. Order Validation: Validate before placing
  4. Error Handling: Always handle exceptions
  5. Logging: Log all trading activities
  6. Risk Controls: Set stop loss/take profit

Links

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

87.96%
按下载量换算1,103

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills