美股已实现盈亏
Longbridge US 账户
此方法仅适用于美国数据中心账户。
获取美股账户已实现盈亏,按资产类别(股票/期权/加密货币)分组。
# 美股已实现盈亏
longbridge profit-analysis realized
# 按股票类别筛选
longbridge profit-analysis realized --category stock
SDK Links
Python |
Rust |
Go |
Node.js |
Java |
C++ |
Parameters
SDK 方法参数。
| 名称 | 类型 | 必填 | 描述 |
|---|---|---|---|
| currency | string | 是 | 结算货币,例如 USD |
| category | string | 否 | 资产类别:ALL | STOCK | OPTION | CRYPTO(默认:ALL) |
Request Example
from longbridge.openapi import TradeContext, Config, OAuthBuilder
oauth = OAuthBuilder("your-client-id").build(lambda url: print("请访问:", url))
config = Config.from_oauth(oauth)
ctx = TradeContext(config)
resp = ctx.us_realized_pl("USD", category="STOCK")
print(resp)import asyncio
from longbridge.openapi import AsyncTradeContext, Config, OAuthBuilder
async def main() -> None:
oauth = await OAuthBuilder("your-client-id").build_async(lambda url: print("请访问:", url))
config = Config.from_oauth(oauth)
ctx = AsyncTradeContext.create(config)
resp = await ctx.us_realized_pl("USD", category="STOCK")
print(resp)
if __name__ == "__main__":
asyncio.run(main())const { Config, TradeContext, OAuth } = require('longbridge')
async function main() {
const oauth = await OAuth.build('your-client-id', (_, url) => {
console.log('请访问此 URL 授权:' + url)
})
const config = Config.fromOAuth(oauth)
const ctx = TradeContext.new(config)
const resp = await ctx.usRealizedPl("USD", "STOCK")
console.log(resp)
}
main().catch(console.error)import com.longbridge.*;
import com.longbridge.trade.*;
class Main {
public static void main(String[] args) throws Exception {
try (OAuth oauth = new OAuthBuilder("your-client-id").build(url -> System.out.println("Open to authorize: " + url)).get();
Config config = Config.fromOAuth(oauth);
TradeContext ctx = TradeContext.create(config)) {
var resp = ctx.getUsRealizedPl("USD", "STOCK").get();
System.out.println(resp);
}
}
}use std::sync::Arc;
use longbridge::{oauth::OAuthBuilder, trade::TradeContext, Config};
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let oauth = OAuthBuilder::new("your-client-id").build(|url| println!("请访问:{url}")).await?;
let config = Arc::new(Config::from_oauth(oauth));
let ctx = TradeContext::new(config);
let opts = longbridge::trade::GetUSRealizedPLOptions {
currency: "USD".to_string(),
category: "STOCK".to_string(),
};
let resp = ctx.us_realized_pl(opts).await?;
println!("{:?}", resp);
Ok(())
}package main
import (
"context"
"fmt"
"log"
"github.com/longbridge/openapi-go/config"
"github.com/longbridge/openapi-go/oauth"
"github.com/longbridge/openapi-go/trade"
)
func main() {
o := oauth.New("your-client-id").
OnOpenURL(func(url string) { fmt.Println("Open this URL to authorize:", url) })
if err := o.Build(context.Background()); err != nil {
log.Fatal(err)
}
conf, err := config.New(config.WithOAuthClient(o))
if err != nil {
log.Fatal(err)
}
c, err := trade.NewFromCfg(conf)
if err != nil {
log.Fatal(err)
}
defer c.Close()
cat := "STOCK"
resp, err := c.USRealizedPL(context.Background(), &trade.GetUSRealizedPL{Currency: "USD", Category: &cat})
if err != nil {
log.Fatal(err)
}
fmt.Printf("%+v\n", resp)
}Response
Response Example
{
"realized_pl_list": [
{
"category": 1,
"currency": "USD",
"metrics": [
{"amount": "1250.50", "period": 1, "rate": "0.0312"}
]
},
{
"category": 3,
"currency": "USD",
"metrics": [
{"amount": "-85.20", "period": 1, "rate": "-0.0215"}
]
}
]
}
Response Status
| 状态码 | 描述 | 结构 |
|---|---|---|
| 200 | 成功 | USRealizedPL |
| 400 | 请求错误 | None |
Schemas
USRealizedPL
| 名称 | 类型 | 必填 | 描述 |
|---|---|---|---|
| realized_pl_list | USRealizedPLEntry[] | 是 | 按资产类别分列的盈亏明细 |
USRealizedPLEntry
| 名称 | 类型 | 必填 | 描述 |
|---|---|---|---|
| category | int | 是 | 资产类别:1=股票,2=期权,3=加密货币 |
| currency | string | 是 | 货币代码,如 USD |
| metrics | USRealizedPLMetric[] | 是 | 按时期分列的盈亏指标 |
USRealizedPLMetric
| 名称 | 类型 | 必填 | 描述 |
|---|---|---|---|
| amount | string | 是 | 已实现盈亏金额 |
| period | int | 是 | 时间周期 |
| rate | string | 是 | 收益率(%) |