├── .gitignore ├── CHANGELOG.md ├── MANIFEST.in ├── README.md ├── requirements.txt ├── setup.py ├── tests ├── __init__.py ├── test_client_config.py ├── test_push_client.py ├── test_quote_client.py ├── test_trade_client.py └── test_utils.py └── tigeropen ├── __init__.py ├── common ├── __init__.py ├── consts │ ├── __init__.py │ ├── filter_fields.py │ ├── fundamental_fields.py │ ├── params.py │ ├── push_destinations.py │ ├── push_subscriptions.py │ ├── push_types.py │ ├── quote_keys.py │ ├── service_types.py │ └── tick_constants.py ├── exceptions.py ├── model.py ├── request.py ├── response.py └── util │ ├── __init__.py │ ├── account_util.py │ ├── common_utils.py │ ├── contract_utils.py │ ├── order_utils.py │ ├── price_util.py │ ├── signature_utils.py │ ├── string_utils.py │ ├── tick_util.py │ └── web_utils.py ├── examples ├── __init__.py ├── ai │ └── mcp_server │ │ ├── MANIFEST.in │ │ ├── README.md │ │ ├── __init__.py │ │ ├── setup.py │ │ └── tigermcp │ │ ├── __init__.py │ │ ├── server.py │ │ └── version.py ├── client_config.py ├── financial_demo.py ├── nasdaq100.py ├── option_helpers │ ├── __init__.py │ └── helpers.py ├── push_client_demo.py ├── push_client_stomp_demo.py ├── quote_client_demo.py └── trade_client_demo.py ├── fundamental ├── __init__.py ├── domain │ └── __init__.py ├── request │ ├── __init__.py │ └── model.py └── response │ ├── __init__.py │ ├── corporate_dividend_response.py │ ├── corporate_earnings_calendar_response.py │ ├── corporate_split_response.py │ ├── dataframe_response.py │ ├── financial_daily_response.py │ ├── financial_exchange_rate_response.py │ ├── financial_report_response.py │ └── industry_response.py ├── push ├── __init__.py ├── network │ ├── __init__.py │ ├── connect.py │ ├── exception.py │ ├── listener.py │ ├── protocal.py │ ├── transport.py │ └── utils.py ├── pb │ ├── AssetData.proto │ ├── AssetData_pb2.py │ ├── AssetData_pb2.pyi │ ├── KlineData.proto │ ├── KlineData_pb2.py │ ├── KlineData_pb2.pyi │ ├── OptionTopData.proto │ ├── OptionTopData_pb2.py │ ├── OptionTopData_pb2.pyi │ ├── OrderStatusData.proto │ ├── OrderStatusData_pb2.py │ ├── OrderStatusData_pb2.pyi │ ├── OrderTransactionData.proto │ ├── OrderTransactionData_pb2.py │ ├── OrderTransactionData_pb2.pyi │ ├── PositionData.proto │ ├── PositionData_pb2.py │ ├── PositionData_pb2.pyi │ ├── PushData.proto │ ├── PushData_pb2.py │ ├── PushData_pb2.pyi │ ├── QuoteBBOData.proto │ ├── QuoteBBOData_pb2.py │ ├── QuoteBBOData_pb2.pyi │ ├── QuoteBasicData.proto │ ├── QuoteBasicData_pb2.py │ ├── QuoteBasicData_pb2.pyi │ ├── QuoteData.proto │ ├── QuoteData_pb2.py │ ├── QuoteData_pb2.pyi │ ├── QuoteDepthData.proto │ ├── QuoteDepthData_pb2.py │ ├── QuoteDepthData_pb2.pyi │ ├── Request.proto │ ├── Request_pb2.py │ ├── Request_pb2.pyi │ ├── Response.proto │ ├── Response_pb2.py │ ├── Response_pb2.pyi │ ├── SocketCommon.proto │ ├── SocketCommon_pb2.py │ ├── SocketCommon_pb2.pyi │ ├── StockTopData.proto │ ├── StockTopData_pb2.py │ ├── StockTopData_pb2.pyi │ ├── TickData.proto │ ├── TickData_pb2.py │ ├── TickData_pb2.pyi │ ├── TradeTickData.proto │ ├── TradeTickData_pb2.py │ ├── TradeTickData_pb2.pyi │ ├── __init__.py │ ├── readme.md │ ├── trade_tick.py │ └── util.py ├── protobuf_push_client.py ├── push_client.py └── stomp_push_client.py ├── quote ├── __init__.py ├── domain │ ├── __init__.py │ ├── bar.py │ ├── capital_distribution.py │ ├── filter.py │ ├── market_status.py │ ├── quote_brief.py │ ├── stock_broker.py │ ├── tick.py │ └── timeline.py ├── quote_client.py ├── request │ ├── __init__.py │ └── model.py └── response │ ├── __init__.py │ ├── broker_hold_response.py │ ├── capital_distribution_response.py │ ├── capital_flow_response.py │ ├── fund_contracts_response.py │ ├── future_briefs_response.py │ ├── future_contract_response.py │ ├── future_depth_response.py │ ├── future_exchange_response.py │ ├── future_quote_bar_response.py │ ├── future_quote_ticks_response.py │ ├── future_trading_times_response.py │ ├── kline_quota_response.py │ ├── market_scanner_response.py │ ├── market_status_response.py │ ├── option_briefs_response.py │ ├── option_chains_response.py │ ├── option_depth_response.py │ ├── option_expirations_response.py │ ├── option_quote_bar_response.py │ ├── option_quote_ticks_response.py │ ├── option_symbols_response.py │ ├── option_timeline_response.py │ ├── quote_bar_response.py │ ├── quote_brief_response.py │ ├── quote_dataframe_response.py │ ├── quote_delay_briefs_response.py │ ├── quote_depth_response.py │ ├── quote_grab_permission_response.py │ ├── quote_hour_trading_timeline_response.py │ ├── quote_overnight_response.py │ ├── quote_ticks_response.py │ ├── quote_timeline_history_response.py │ ├── quote_timeline_response.py │ ├── stock_briefs_response.py │ ├── stock_broker_response.py │ ├── stock_details_response.py │ ├── stock_short_interest_response.py │ ├── stock_trade_meta_response.py │ ├── symbol_names_response.py │ ├── symbols_response.py │ ├── trade_rank_response.py │ ├── trading_calendar_response.py │ ├── warrant_briefs_response.py │ └── warrant_filter_response.py ├── tiger_open_client.py ├── tiger_open_config.py └── trade ├── __init__.py ├── domain ├── __init__.py ├── account.py ├── contract.py ├── order.py ├── position.py ├── prime_account.py └── profile.py ├── request ├── __init__.py └── model.py ├── response ├── __init__.py ├── account_profile_response.py ├── aggregate_assets_response.py ├── analytics_asset_response.py ├── assets_response.py ├── contracts_response.py ├── forex_order_response.py ├── fund_details_response.py ├── funding_history_response.py ├── order_id_response.py ├── order_preview_response.py ├── orders_response.py ├── positions_response.py ├── prime_assets_response.py ├── segment_fund_response.py └── transactions_response.py └── trade_client.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include requirements.txt 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_client_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tests/test_client_config.py -------------------------------------------------------------------------------- /tests/test_push_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tests/test_push_client.py -------------------------------------------------------------------------------- /tests/test_quote_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tests/test_quote_client.py -------------------------------------------------------------------------------- /tests/test_trade_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tests/test_trade_client.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tigeropen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/__init__.py -------------------------------------------------------------------------------- /tigeropen/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/__init__.py -------------------------------------------------------------------------------- /tigeropen/common/consts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/consts/__init__.py -------------------------------------------------------------------------------- /tigeropen/common/consts/filter_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/consts/filter_fields.py -------------------------------------------------------------------------------- /tigeropen/common/consts/fundamental_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/consts/fundamental_fields.py -------------------------------------------------------------------------------- /tigeropen/common/consts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/consts/params.py -------------------------------------------------------------------------------- /tigeropen/common/consts/push_destinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/consts/push_destinations.py -------------------------------------------------------------------------------- /tigeropen/common/consts/push_subscriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/consts/push_subscriptions.py -------------------------------------------------------------------------------- /tigeropen/common/consts/push_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/consts/push_types.py -------------------------------------------------------------------------------- /tigeropen/common/consts/quote_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/consts/quote_keys.py -------------------------------------------------------------------------------- /tigeropen/common/consts/service_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/consts/service_types.py -------------------------------------------------------------------------------- /tigeropen/common/consts/tick_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/consts/tick_constants.py -------------------------------------------------------------------------------- /tigeropen/common/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/exceptions.py -------------------------------------------------------------------------------- /tigeropen/common/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/model.py -------------------------------------------------------------------------------- /tigeropen/common/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/request.py -------------------------------------------------------------------------------- /tigeropen/common/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/response.py -------------------------------------------------------------------------------- /tigeropen/common/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/util/__init__.py -------------------------------------------------------------------------------- /tigeropen/common/util/account_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/util/account_util.py -------------------------------------------------------------------------------- /tigeropen/common/util/common_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/util/common_utils.py -------------------------------------------------------------------------------- /tigeropen/common/util/contract_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/util/contract_utils.py -------------------------------------------------------------------------------- /tigeropen/common/util/order_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/util/order_utils.py -------------------------------------------------------------------------------- /tigeropen/common/util/price_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/util/price_util.py -------------------------------------------------------------------------------- /tigeropen/common/util/signature_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/util/signature_utils.py -------------------------------------------------------------------------------- /tigeropen/common/util/string_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/util/string_utils.py -------------------------------------------------------------------------------- /tigeropen/common/util/tick_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/util/tick_util.py -------------------------------------------------------------------------------- /tigeropen/common/util/web_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/common/util/web_utils.py -------------------------------------------------------------------------------- /tigeropen/examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/examples/__init__.py -------------------------------------------------------------------------------- /tigeropen/examples/ai/mcp_server/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/examples/ai/mcp_server/MANIFEST.in -------------------------------------------------------------------------------- /tigeropen/examples/ai/mcp_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/examples/ai/mcp_server/README.md -------------------------------------------------------------------------------- /tigeropen/examples/ai/mcp_server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/examples/ai/mcp_server/__init__.py -------------------------------------------------------------------------------- /tigeropen/examples/ai/mcp_server/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/examples/ai/mcp_server/setup.py -------------------------------------------------------------------------------- /tigeropen/examples/ai/mcp_server/tigermcp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/examples/ai/mcp_server/tigermcp/__init__.py -------------------------------------------------------------------------------- /tigeropen/examples/ai/mcp_server/tigermcp/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/examples/ai/mcp_server/tigermcp/server.py -------------------------------------------------------------------------------- /tigeropen/examples/ai/mcp_server/tigermcp/version.py: -------------------------------------------------------------------------------- 1 | __VERSION__ = '0.1.4' -------------------------------------------------------------------------------- /tigeropen/examples/client_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/examples/client_config.py -------------------------------------------------------------------------------- /tigeropen/examples/financial_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/examples/financial_demo.py -------------------------------------------------------------------------------- /tigeropen/examples/nasdaq100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/examples/nasdaq100.py -------------------------------------------------------------------------------- /tigeropen/examples/option_helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/examples/option_helpers/__init__.py -------------------------------------------------------------------------------- /tigeropen/examples/option_helpers/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/examples/option_helpers/helpers.py -------------------------------------------------------------------------------- /tigeropen/examples/push_client_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/examples/push_client_demo.py -------------------------------------------------------------------------------- /tigeropen/examples/push_client_stomp_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/examples/push_client_stomp_demo.py -------------------------------------------------------------------------------- /tigeropen/examples/quote_client_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/examples/quote_client_demo.py -------------------------------------------------------------------------------- /tigeropen/examples/trade_client_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/examples/trade_client_demo.py -------------------------------------------------------------------------------- /tigeropen/fundamental/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /tigeropen/fundamental/domain/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /tigeropen/fundamental/request/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- -------------------------------------------------------------------------------- /tigeropen/fundamental/request/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/fundamental/request/model.py -------------------------------------------------------------------------------- /tigeropen/fundamental/response/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /tigeropen/fundamental/response/corporate_dividend_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/fundamental/response/corporate_dividend_response.py -------------------------------------------------------------------------------- /tigeropen/fundamental/response/corporate_earnings_calendar_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/fundamental/response/corporate_earnings_calendar_response.py -------------------------------------------------------------------------------- /tigeropen/fundamental/response/corporate_split_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/fundamental/response/corporate_split_response.py -------------------------------------------------------------------------------- /tigeropen/fundamental/response/dataframe_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/fundamental/response/dataframe_response.py -------------------------------------------------------------------------------- /tigeropen/fundamental/response/financial_daily_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/fundamental/response/financial_daily_response.py -------------------------------------------------------------------------------- /tigeropen/fundamental/response/financial_exchange_rate_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/fundamental/response/financial_exchange_rate_response.py -------------------------------------------------------------------------------- /tigeropen/fundamental/response/financial_report_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/fundamental/response/financial_report_response.py -------------------------------------------------------------------------------- /tigeropen/fundamental/response/industry_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/fundamental/response/industry_response.py -------------------------------------------------------------------------------- /tigeropen/push/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/__init__.py -------------------------------------------------------------------------------- /tigeropen/push/network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tigeropen/push/network/connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/network/connect.py -------------------------------------------------------------------------------- /tigeropen/push/network/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/network/exception.py -------------------------------------------------------------------------------- /tigeropen/push/network/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/network/listener.py -------------------------------------------------------------------------------- /tigeropen/push/network/protocal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/network/protocal.py -------------------------------------------------------------------------------- /tigeropen/push/network/transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/network/transport.py -------------------------------------------------------------------------------- /tigeropen/push/network/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/network/utils.py -------------------------------------------------------------------------------- /tigeropen/push/pb/AssetData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/AssetData.proto -------------------------------------------------------------------------------- /tigeropen/push/pb/AssetData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/AssetData_pb2.py -------------------------------------------------------------------------------- /tigeropen/push/pb/AssetData_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/AssetData_pb2.pyi -------------------------------------------------------------------------------- /tigeropen/push/pb/KlineData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/KlineData.proto -------------------------------------------------------------------------------- /tigeropen/push/pb/KlineData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/KlineData_pb2.py -------------------------------------------------------------------------------- /tigeropen/push/pb/KlineData_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/KlineData_pb2.pyi -------------------------------------------------------------------------------- /tigeropen/push/pb/OptionTopData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/OptionTopData.proto -------------------------------------------------------------------------------- /tigeropen/push/pb/OptionTopData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/OptionTopData_pb2.py -------------------------------------------------------------------------------- /tigeropen/push/pb/OptionTopData_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/OptionTopData_pb2.pyi -------------------------------------------------------------------------------- /tigeropen/push/pb/OrderStatusData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/OrderStatusData.proto -------------------------------------------------------------------------------- /tigeropen/push/pb/OrderStatusData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/OrderStatusData_pb2.py -------------------------------------------------------------------------------- /tigeropen/push/pb/OrderStatusData_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/OrderStatusData_pb2.pyi -------------------------------------------------------------------------------- /tigeropen/push/pb/OrderTransactionData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/OrderTransactionData.proto -------------------------------------------------------------------------------- /tigeropen/push/pb/OrderTransactionData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/OrderTransactionData_pb2.py -------------------------------------------------------------------------------- /tigeropen/push/pb/OrderTransactionData_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/OrderTransactionData_pb2.pyi -------------------------------------------------------------------------------- /tigeropen/push/pb/PositionData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/PositionData.proto -------------------------------------------------------------------------------- /tigeropen/push/pb/PositionData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/PositionData_pb2.py -------------------------------------------------------------------------------- /tigeropen/push/pb/PositionData_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/PositionData_pb2.pyi -------------------------------------------------------------------------------- /tigeropen/push/pb/PushData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/PushData.proto -------------------------------------------------------------------------------- /tigeropen/push/pb/PushData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/PushData_pb2.py -------------------------------------------------------------------------------- /tigeropen/push/pb/PushData_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/PushData_pb2.pyi -------------------------------------------------------------------------------- /tigeropen/push/pb/QuoteBBOData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/QuoteBBOData.proto -------------------------------------------------------------------------------- /tigeropen/push/pb/QuoteBBOData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/QuoteBBOData_pb2.py -------------------------------------------------------------------------------- /tigeropen/push/pb/QuoteBBOData_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/QuoteBBOData_pb2.pyi -------------------------------------------------------------------------------- /tigeropen/push/pb/QuoteBasicData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/QuoteBasicData.proto -------------------------------------------------------------------------------- /tigeropen/push/pb/QuoteBasicData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/QuoteBasicData_pb2.py -------------------------------------------------------------------------------- /tigeropen/push/pb/QuoteBasicData_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/QuoteBasicData_pb2.pyi -------------------------------------------------------------------------------- /tigeropen/push/pb/QuoteData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/QuoteData.proto -------------------------------------------------------------------------------- /tigeropen/push/pb/QuoteData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/QuoteData_pb2.py -------------------------------------------------------------------------------- /tigeropen/push/pb/QuoteData_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/QuoteData_pb2.pyi -------------------------------------------------------------------------------- /tigeropen/push/pb/QuoteDepthData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/QuoteDepthData.proto -------------------------------------------------------------------------------- /tigeropen/push/pb/QuoteDepthData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/QuoteDepthData_pb2.py -------------------------------------------------------------------------------- /tigeropen/push/pb/QuoteDepthData_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/QuoteDepthData_pb2.pyi -------------------------------------------------------------------------------- /tigeropen/push/pb/Request.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/Request.proto -------------------------------------------------------------------------------- /tigeropen/push/pb/Request_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/Request_pb2.py -------------------------------------------------------------------------------- /tigeropen/push/pb/Request_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/Request_pb2.pyi -------------------------------------------------------------------------------- /tigeropen/push/pb/Response.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/Response.proto -------------------------------------------------------------------------------- /tigeropen/push/pb/Response_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/Response_pb2.py -------------------------------------------------------------------------------- /tigeropen/push/pb/Response_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/Response_pb2.pyi -------------------------------------------------------------------------------- /tigeropen/push/pb/SocketCommon.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/SocketCommon.proto -------------------------------------------------------------------------------- /tigeropen/push/pb/SocketCommon_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/SocketCommon_pb2.py -------------------------------------------------------------------------------- /tigeropen/push/pb/SocketCommon_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/SocketCommon_pb2.pyi -------------------------------------------------------------------------------- /tigeropen/push/pb/StockTopData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/StockTopData.proto -------------------------------------------------------------------------------- /tigeropen/push/pb/StockTopData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/StockTopData_pb2.py -------------------------------------------------------------------------------- /tigeropen/push/pb/StockTopData_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/StockTopData_pb2.pyi -------------------------------------------------------------------------------- /tigeropen/push/pb/TickData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/TickData.proto -------------------------------------------------------------------------------- /tigeropen/push/pb/TickData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/TickData_pb2.py -------------------------------------------------------------------------------- /tigeropen/push/pb/TickData_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/TickData_pb2.pyi -------------------------------------------------------------------------------- /tigeropen/push/pb/TradeTickData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/TradeTickData.proto -------------------------------------------------------------------------------- /tigeropen/push/pb/TradeTickData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/TradeTickData_pb2.py -------------------------------------------------------------------------------- /tigeropen/push/pb/TradeTickData_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/TradeTickData_pb2.pyi -------------------------------------------------------------------------------- /tigeropen/push/pb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/__init__.py -------------------------------------------------------------------------------- /tigeropen/push/pb/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/readme.md -------------------------------------------------------------------------------- /tigeropen/push/pb/trade_tick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/trade_tick.py -------------------------------------------------------------------------------- /tigeropen/push/pb/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/pb/util.py -------------------------------------------------------------------------------- /tigeropen/push/protobuf_push_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/protobuf_push_client.py -------------------------------------------------------------------------------- /tigeropen/push/push_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/push_client.py -------------------------------------------------------------------------------- /tigeropen/push/stomp_push_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/push/stomp_push_client.py -------------------------------------------------------------------------------- /tigeropen/quote/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/__init__.py -------------------------------------------------------------------------------- /tigeropen/quote/domain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/domain/__init__.py -------------------------------------------------------------------------------- /tigeropen/quote/domain/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/domain/bar.py -------------------------------------------------------------------------------- /tigeropen/quote/domain/capital_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/domain/capital_distribution.py -------------------------------------------------------------------------------- /tigeropen/quote/domain/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/domain/filter.py -------------------------------------------------------------------------------- /tigeropen/quote/domain/market_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/domain/market_status.py -------------------------------------------------------------------------------- /tigeropen/quote/domain/quote_brief.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/domain/quote_brief.py -------------------------------------------------------------------------------- /tigeropen/quote/domain/stock_broker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/domain/stock_broker.py -------------------------------------------------------------------------------- /tigeropen/quote/domain/tick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/domain/tick.py -------------------------------------------------------------------------------- /tigeropen/quote/domain/timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/domain/timeline.py -------------------------------------------------------------------------------- /tigeropen/quote/quote_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/quote_client.py -------------------------------------------------------------------------------- /tigeropen/quote/request/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/request/__init__.py -------------------------------------------------------------------------------- /tigeropen/quote/request/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/request/model.py -------------------------------------------------------------------------------- /tigeropen/quote/response/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/__init__.py -------------------------------------------------------------------------------- /tigeropen/quote/response/broker_hold_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/broker_hold_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/capital_distribution_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/capital_distribution_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/capital_flow_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/capital_flow_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/fund_contracts_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/fund_contracts_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/future_briefs_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/future_briefs_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/future_contract_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/future_contract_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/future_depth_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/future_depth_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/future_exchange_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/future_exchange_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/future_quote_bar_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/future_quote_bar_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/future_quote_ticks_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/future_quote_ticks_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/future_trading_times_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/future_trading_times_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/kline_quota_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/kline_quota_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/market_scanner_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/market_scanner_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/market_status_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/market_status_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/option_briefs_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/option_briefs_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/option_chains_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/option_chains_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/option_depth_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/option_depth_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/option_expirations_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/option_expirations_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/option_quote_bar_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/option_quote_bar_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/option_quote_ticks_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/option_quote_ticks_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/option_symbols_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/option_symbols_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/option_timeline_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/option_timeline_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/quote_bar_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/quote_bar_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/quote_brief_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/quote_brief_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/quote_dataframe_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/quote_dataframe_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/quote_delay_briefs_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/quote_delay_briefs_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/quote_depth_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/quote_depth_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/quote_grab_permission_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/quote_grab_permission_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/quote_hour_trading_timeline_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/quote_hour_trading_timeline_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/quote_overnight_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/quote_overnight_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/quote_ticks_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/quote_ticks_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/quote_timeline_history_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/quote_timeline_history_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/quote_timeline_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/quote_timeline_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/stock_briefs_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/stock_briefs_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/stock_broker_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/stock_broker_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/stock_details_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/stock_details_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/stock_short_interest_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/stock_short_interest_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/stock_trade_meta_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/stock_trade_meta_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/symbol_names_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/symbol_names_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/symbols_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/symbols_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/trade_rank_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/trade_rank_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/trading_calendar_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/trading_calendar_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/warrant_briefs_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/warrant_briefs_response.py -------------------------------------------------------------------------------- /tigeropen/quote/response/warrant_filter_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/quote/response/warrant_filter_response.py -------------------------------------------------------------------------------- /tigeropen/tiger_open_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/tiger_open_client.py -------------------------------------------------------------------------------- /tigeropen/tiger_open_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/tiger_open_config.py -------------------------------------------------------------------------------- /tigeropen/trade/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/__init__.py -------------------------------------------------------------------------------- /tigeropen/trade/domain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/domain/__init__.py -------------------------------------------------------------------------------- /tigeropen/trade/domain/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/domain/account.py -------------------------------------------------------------------------------- /tigeropen/trade/domain/contract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/domain/contract.py -------------------------------------------------------------------------------- /tigeropen/trade/domain/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/domain/order.py -------------------------------------------------------------------------------- /tigeropen/trade/domain/position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/domain/position.py -------------------------------------------------------------------------------- /tigeropen/trade/domain/prime_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/domain/prime_account.py -------------------------------------------------------------------------------- /tigeropen/trade/domain/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/domain/profile.py -------------------------------------------------------------------------------- /tigeropen/trade/request/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/request/__init__.py -------------------------------------------------------------------------------- /tigeropen/trade/request/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/request/model.py -------------------------------------------------------------------------------- /tigeropen/trade/response/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/response/__init__.py -------------------------------------------------------------------------------- /tigeropen/trade/response/account_profile_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/response/account_profile_response.py -------------------------------------------------------------------------------- /tigeropen/trade/response/aggregate_assets_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/response/aggregate_assets_response.py -------------------------------------------------------------------------------- /tigeropen/trade/response/analytics_asset_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/response/analytics_asset_response.py -------------------------------------------------------------------------------- /tigeropen/trade/response/assets_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/response/assets_response.py -------------------------------------------------------------------------------- /tigeropen/trade/response/contracts_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/response/contracts_response.py -------------------------------------------------------------------------------- /tigeropen/trade/response/forex_order_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/response/forex_order_response.py -------------------------------------------------------------------------------- /tigeropen/trade/response/fund_details_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/response/fund_details_response.py -------------------------------------------------------------------------------- /tigeropen/trade/response/funding_history_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/response/funding_history_response.py -------------------------------------------------------------------------------- /tigeropen/trade/response/order_id_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/response/order_id_response.py -------------------------------------------------------------------------------- /tigeropen/trade/response/order_preview_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/response/order_preview_response.py -------------------------------------------------------------------------------- /tigeropen/trade/response/orders_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/response/orders_response.py -------------------------------------------------------------------------------- /tigeropen/trade/response/positions_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/response/positions_response.py -------------------------------------------------------------------------------- /tigeropen/trade/response/prime_assets_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/response/prime_assets_response.py -------------------------------------------------------------------------------- /tigeropen/trade/response/segment_fund_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/response/segment_fund_response.py -------------------------------------------------------------------------------- /tigeropen/trade/response/transactions_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/response/transactions_response.py -------------------------------------------------------------------------------- /tigeropen/trade/trade_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigerfintech/openapi-python-sdk/HEAD/tigeropen/trade/trade_client.py --------------------------------------------------------------------------------