跳至主要内容

賬戶持倉

接口說明

  • 功能說明:根據賬戶id分頁查詢賬戶持倉列表。

  • 適用對象:通過OpenApi開發平台對接webull的客戶。

  • 請求URL:/account/positions

  • 請求方式:GET

  • 頻次限制:每個AppId調用頻次限制為2秒2次

請求參數

參數類型是否必填描述示例值
account_idString賬戶id20150320010101001
page_sizeint每頁條數。 默認值:10;最大值:100,可填整數。10
last_instrument_idString上一頁最後一個的標的id,不傳默認查第一頁202202180001

響應參數

參數類型是否必填描述示例值
has_nextBooleantrue是否還有下一頁true
holdings[ ]Holding持倉列表

Holding:

參數類型描述示例值
instrument_idString標的id913252773
symbolString標的代碼00001
instrument_typeString標的類型:STOCK股票STOCK
short_nameString股票簡稱,取英文CKH HOLDINGS
currencyString持倉幣種HKD
unit_costString持倉成本價9.5460000000
qtyString標的數量,股數11000.0
total_costString持倉總成本105006.00000000000000000000
last_priceString市價52.250
market_valueString市值574750.0000000000000
unrealized_profit_lossString浮動盈虧469744.00000000000000000000
unrealized_profit_loss_rateString浮動盈虧率4.4735
holding_proportionString持倉佔比0.9854

請求示例

from webullsdktrade.api import API
from webullsdkcore.client import ApiClient
from webullsdkcore.common.region import Region

api_client = ApiClient(your_app_key, your_app_secret, Region.HK.value)
api = API(api_client)
response = api.account.get_account_position(account_id)
if response.status_code == 200:
account_position = response.json()

響應示例

異常示例