What problem does it solve? Integrating the Tiger Brokers OpenAPI C++ SDK involves tricky build configuration (pinned Boost, Protobuf, and Abseil versions), verbose cpprestsdk JSON handling, and undocumented wrapper quirks. This Skill provides complete, verified guidance for building, querying market data, placing orders, and subscribing to real-time push streams without trial-and-error. ## Core Features & Use Cases - Build & Setup Guidance: CMake integration, dependency version pinning (Boost 1.86, Protobuf 5.28.3, Abseil 20240722.0), and cross-platform build scripts for macOS, Linux, and Windows. - Market Data & Trading: Real-time quotes, K-lines, depth, option chains with Greeks, futures, order placement/modification/cancellation, positions, and account assets. - Real-time Push: WebSocket subscriptions for quotes, orders, positions, and assets with callback-based event handling. - Use Case: A developer asks how to buy 100 shares of AAPL with a limit order in C++. The Skill generates code using ContractUtil and OrderUtil, enforces the preview-then-confirm safety flow, and defaults to a paper trading account. ## Quick Start Ask the AI to write a C++ program using the Tiger Brokers OpenAPI SDK that fetches real-time quotes for AAPL and TSLA and prints the latest prices.