AI Agent Hub
Back to skills
Dragon-Tiger List Query icon

Dragon-Tiger List Query

Professional Updated 2026.08.30

Paste the following prompt into your AI chat to install this skill:

Install @org-mijzrode/gflhb according to https://skillhub.cn/install/skillhub.md.

About this skill

Problem

When querying Dragon-Tiger List data, manually assembling curl requests, managing the Authorization header, and keeping parameter formats correct can be error-prone. In particular, date must be an integer in YYYYMMDD format, while market must distinguish sh / sz. This skill wraps the GF Securities Dragon-Tiger List interface into a callable capability, returning data for a specified date and market, which fits scripts, assistants, or market-data workflows.

How It Works

  • Authentication: Reads the key from the environment variable GF_SKILLS_APIKEY and sends it as a Bearer token. If it is missing, it directs users to http://hd.gf.com.cn/skills-market to request access.
  • Request: Sends a POST request to https://mcp-api.gf.com.cn/gf-skills/skills/mcp/call, including service_name: lhb, tool_name: lhb_aborttrade_market_date_get, and the args payload.
  • Parameters: date is required and must be an integer date. market is required, where sh means Shanghai and sz means Shenzhen.

Boundaries

This skill targets Dragon-Tiger List lookups for a single date and a single market. Before calling it, confirm that the API key is valid, the date format is correct, and the market value matches the expected interface contract. If the response structure differs from downstream expectations, parsing should be adjusted based on the actual returned fields.

Use Cases

  • A quant researcher reviews same-day Shanghai anomalies by fetching Dragon-Tiger List data for a specified date and market.
  • A strategy engineer calls the skill in a script with `date` and `sz` to pull Shenzhen Dragon-Tiger List results for attribution.
  • A market operations analyst obtains raw Dragon-Tiger List data for the trading day and exchange before writing an anomaly report.
  • An advisory assistant retrieves Dragon-Tiger List data using the user-provided date and market code to answer a query.

Best For

  • Quant researchers who need Dragon-Tiger List data by date and Shanghai or Shenzhen market.
  • Strategy engineers integrating the GF Securities Dragon-Tiger List API into automated scripts.
  • Market operations analysts preparing anomaly reports and checking raw Dragon-Tiger List data.
  • Assistant developers building date- and market-based Dragon-Tiger List lookups for business users.