diff --git a/docs/quote/pull/quote.md b/docs/quote/pull/quote.md index cffc6a16..1c04a074 100644 --- a/docs/quote/pull/quote.md +++ b/docs/quote/pull/quote.md @@ -47,43 +47,59 @@ print(resp) ### Response Properties -| Name | Type | Description | -| ------------------- | -------- | ------------------------------------------------------------------- | -| secu_quote | object[] | 标的实时行情数据列表 | -| ∟ symbol | string | 标的代码 | -| ∟ last_done | string | 最新价 | -| ∟ prev_close | string | 昨收价 | -| ∟ open | string | 开盘价 | -| ∟ high | string | 最高价 | -| ∟ low | string | 最低价 | -| ∟ timestamp | int64 | 最新成交的时间戳 | -| ∟ volume | int64 | 成交量 | -| ∟ turnover | string | 成交额 | -| ∟ trade_status | int32 | 标的交易状态,详见 [TradeStatus](../objects#tradestatus---交易状态) | -| ∟ pre_market_quote | object | 美股盘前交易行情 | -| ∟∟ last_done | string | 最新价 | -| ∟∟ timestamp | int64 | 最新成交的时间戳 | -| ∟∟ volume | int64 | 成交量 | -| ∟∟ turnover | string | 成交额 | -| ∟∟ high | string | 最高价 | -| ∟∟ low | string | 最低价 | -| ∟∟ prev_close | string | 上一个交易阶段的收盘价 | -| ∟ post_market_quote | object | 美股盘后交易行情 | -| ∟∟ last_done | string | 最新价 | -| ∟∟ timestamp | int64 | 最新成交的时间戳 | -| ∟∟ volume | int64 | 成交量 | -| ∟∟ turnover | string | 成交额 | -| ∟∟ high | string | 最高价 | -| ∟∟ low | string | 最低价 | -| ∟∟ prev_close | string | 上一个交易阶段的收盘价 | -| ∟ overnight_quote | object | 美股夜盘交易行情 | -| ∟∟ last_done | string | 最新价 | -| ∟∟ timestamp | int64 | 最新成交的时间戳 | -| ∟∟ volume | int64 | 成交量 | -| ∟∟ turnover | string | 成交额 | -| ∟∟ high | string | 最高价 | -| ∟∟ low | string | 最低价 | -| ∟∟ prev_close | string | 上一个交易阶段的收盘价 | +| Name | Type | Description | +| ------------------- | -------- | ------------------------------------------------------------------------------- | +| secu_quote | object[] | 标的实时行情数据列表 | +| ∟ symbol | string | 标的代码 | +| ∟ last_done | string | 最新价 | +| ∟ prev_close | string | 昨收价 | +| ∟ open | string | 开盘价 | +| ∟ high | string | 最高价 | +| ∟ low | string | 最低价 | +| ∟ timestamp | int64 | 最新成交的时间戳 | +| ∟ volume | int64 | 成交量 | +| ∟ turnover | string | 成交额 | +| ∟ trade_status | int32 | 标的交易状态,详见 [TradeStatus](../objects#tradestatus---交易状态) | +| ∟ pre_market_quote | object | 美股盘前交易行情 | +| ∟∟ last_done | string | 最新价 | +| ∟∟ timestamp | int64 | 最新成交的时间戳 | +| ∟∟ volume | int64 | 成交量 | +| ∟∟ turnover | string | 成交额 | +| ∟∟ high | string | 最高价 | +| ∟∟ low | string | 最低价 | +| ∟∟ prev_close | string | 上一个交易阶段的收盘价 | +| ∟ post_market_quote | object | 美股盘后交易行情 | +| ∟∟ last_done | string | 最新价 | +| ∟∟ timestamp | int64 | 最新成交的时间戳 | +| ∟∟ volume | int64 | 成交量 | +| ∟∟ turnover | string | 成交额 | +| ∟∟ high | string | 最高价 | +| ∟∟ low | string | 最低价 | +| ∟∟ prev_close | string | 上一个交易阶段的收盘价 | +| ∟ overnight_quote | object | 美股夜盘交易行情

注意:需开启 `enable_overnight` 参数,否则会返回 null | +| ∟∟ last_done | string | 最新价 | +| ∟∟ timestamp | int64 | 最新成交的时间戳 | +| ∟∟ volume | int64 | 成交量 | +| ∟∟ turnover | string | 成交额 | +| ∟∟ high | string | 最高价 | +| ∟∟ low | string | 最低价 | +| ∟∟ prev_close | string | 上一个交易阶段的收盘价 | + +### 注意 + +#### `overnight_quote` 参数细节 + +只有当我们在配置的时候开启了 `enable_overnight` 参数,才会返回 `overnight_quote` 字段。 + +```py +config = Config( + app_key="your_app_key", + app_secret="your_app_secret", + access_token="your_access_token", + enable_overnight=True) +``` + +或者设置环境变量 `LONGPORT_ENABLE_OVERNIGHT` 为 `true`。 ### Protobuf diff --git a/docs/socket/overview.md b/docs/socket/overview.md new file mode 100644 index 00000000..70daeb39 --- /dev/null +++ b/docs/socket/overview.md @@ -0,0 +1,16 @@ +--- +title: Overview +id: overview +slug: /socket/overview +sidebar_position: -1 +--- + +我们的 OpenAPI 提供 WebSocket 方式连接行情网关,客户端可以通过这两种方式订阅行情。本章节文档将会介绍详细的协议细节。 + +:::success NOTE +我们的 OpenAPI SDK 已经完整实现了订阅行情的功能,你可以直接使用 SDK。 + +https://open.longportapp.com/sdk + +本章节文档提供给大家参考 API 细节。 +::: diff --git a/i18n/en/docusaurus-plugin-content-docs/current/qa/quote.md b/i18n/en/docusaurus-plugin-content-docs/current/qa/quote.md index bd402c59..232393e3 100644 --- a/i18n/en/docusaurus-plugin-content-docs/current/qa/quote.md +++ b/i18n/en/docusaurus-plugin-content-docs/current/qa/quote.md @@ -115,7 +115,7 @@ message ReconnectRequest { - After turning on the night trading quotations, both the pull and push interfaces will be able to obtain the night trading quotations during the night trading period. -## Q7:Enable Overnight quote in OpenApi SDK +## Q7: Enable Overnight quote in OpenApi SDK A: diff --git a/i18n/en/docusaurus-plugin-content-docs/current/socket/overview.md b/i18n/en/docusaurus-plugin-content-docs/current/socket/overview.md new file mode 100644 index 00000000..ff5a1742 --- /dev/null +++ b/i18n/en/docusaurus-plugin-content-docs/current/socket/overview.md @@ -0,0 +1,16 @@ +--- +title: Overview +id: overview +slug: /socket/overview +sidebar_position: -1 +--- + +Our OpenAPI provides WebSocket connection to the market gateway, clients can subscribe to market data through these two methods. This chapter will introduce the detailed protocol details. + +:::success NOTE +Our OpenAPI SDK has fully implemented the function of subscribing to market data, you can use the SDK directly. + +https://open.longportapp.com/sdk + +This chapter provides API details for your reference. +::: diff --git a/i18n/zh-HK/docusaurus-plugin-content-docs/current/socket/overview.md b/i18n/zh-HK/docusaurus-plugin-content-docs/current/socket/overview.md new file mode 100644 index 00000000..c6fe05b4 --- /dev/null +++ b/i18n/zh-HK/docusaurus-plugin-content-docs/current/socket/overview.md @@ -0,0 +1,16 @@ +--- +title: Overview +id: overview +slug: /socket/overview +sidebar_position: -1 +--- + +我們的 OpenAPI 提供 WebSocket 方式連接行情網關,客戶端可以透過這兩種方式訂閱行情。本章節文檔將會介紹詳細的協定細節。 + +:::success NOTE +我們的 OpenAPI SDK 已經完整實現了訂閱行情的功能,你可以直接使用 SDK。 + +https://open.longportapp.com/sdk + +本章節文檔提供給大家參考 API 細節。 +:::