longportapp / openapi-sdk

LongPort OpenAPI SDK Base.
https://open.longportapp.com
Apache License 2.0
109 stars 11 forks source link

获取股票持仓中没有浮动盈亏相关的数据 #95

Open lc8681 opened 4 days ago

lc8681 commented 4 days ago

问题描述

请问《获取股票持仓》接口中没有浮动盈亏相关的数据

代码例子

# 获取股票持仓
# https://open.longportapp.com/docs/trade/asset/stock
from longport.openapi import TradeContext, Config
config = Config.from_env()
ctx = TradeContext(config)
resp = ctx.stock_positions()
print(resp)

目前这个接口返回的数据没有浮动盈亏相关的东西,请问我该如何获取到浮动盈亏呢,谢谢。

sky-lft commented 3 days ago

可以查询对应标的实时行情再结合该接口的持仓数量、成本价格做出计算;浮动盈亏=(当前价格-成本价格)*持仓数量