← All skills
Tencent SkillHub Β· Developer Tools

Tiger Trade

Execute US and HK stock trades via Tiger Brokers API. Use when user wants to buy or sell stocks, manage investment portfolio, place orders for US ETFs or HK...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Execute US and HK stock trades via Tiger Brokers API. Use when user wants to buy or sell stocks, manage investment portfolio, place orders for US ETFs or HK...

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, _meta.json

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.5

Documentation

ClawHub primary doc Primary doc: SKILL.md 6 sections Open source page

Tiger Trade

Execute trades via Tiger Brokers API.

Setup

Create config file at ~/.tiger-config.json : { "tiger_id": "your_tiger_id", "account": "your_account", "private_key_pk8": "your_private_key" }

Check Stock Prices

Use Tiger Broker website to get current prices: https://www.itiger.com/hant/stock/02800 https://www.itiger.com/hant/stock/AAPL Replace the stock code (02800 or AAPL) with any stock

Quick Trade

import json from tigeropen.tiger_open_config import TigerOpenClientConfig from tigeropen.trade.trade_client import TradeClient from tigeropen.trade.request.model import PlaceModifyOrderParams from tigeropen.common.consts import OrderType with open('~/.tiger-config.json', 'r') as f: config = json.load(f) client_config = TigerOpenClientConfig() client_config.tiger_id = config['tiger_id'] client_config.account = config['account'] client_config.private_key = config['private_key_pk8'] client_config.sandbox = False client = TradeClient(client_config) # Place stock order contracts = client.get_contracts(['02800']) if contracts: order_params = PlaceModifyOrderParams() order_params.account = config['account'] order_params.contract = contracts[0] order_params.action = 'BUY' order_params.order_type = OrderType.LMT.value order_params.limit_price = 26.80 # Get from itiger.com order_params.quantity = 10000 result = client.place_order(order_params) print(result)

Order Types

LMT = Limit order MKT = Market order

Actions

BUY - δΉ°ε…₯ SELL - 卖出

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Config
  • SKILL.md Primary doc
  • _meta.json Config