What problem does it solve? Building trading applications against the Tiger Brokers OpenAPI C# SDK requires knowing exact model types, enum conventions, and API constants that are easy to get wrong (e.g., PositionsModel vs PositionModel, Expiry as a long millisecond timestamp). This Skill provides verified, bilingual reference guides so AI coding tools generate correct SDK code on the first attempt. ## Core Features & Use Cases - Market Data Queries: Real-time quotes, K-lines, depth, timelines, capital flow, and futures data via QuoteClient and TigerRequest<TResponse> patterns. - Trading Operations: Place, modify, cancel, and preview orders (limit, market, stop-limit, trail), query positions, assets, and order history with mandatory paper-trading safety defaults. - Real-time Push & Options: TCP/WebSocket streaming subscriptions via the singleton PushClient, plus option chains, Greeks, multi-leg combo strategies, and option exercise workflows. - Use Case: Ask the AI to "write C# code to subscribe to real-time AAPL quotes and place a paper limit order" and receive compilable code using the correct PushClient.GetInstance() pattern and PlaceOrderModel.BuildLimitOrder factory. ## Quick Start Ask the AI to write C# code using the Tiger Brokers OpenAPI SDK to query real-time quotes for AAPL and TSLA with a TigerConfig loaded from your config directory.