定投統計
獲取定投統計匯總信息,包括總投入金額和盈虧情況。
SDK Links
Python | longbridge.openapi.DCAContext.stats |
Rust | longbridge::dca::DCAContext#stats |
Go | DCAContext.Stats |
Node.js | DCAContext#stats |
Java | DCAContext.getStats |
C++ | longbridge::dca::DCAContext::stats |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | 否 | 按標的過濾 |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"active_count": "2",
"finished_count": "1",
"suspended_count": "0",
"rest_days": "3",
"total_amount": "5400",
"total_profit": "120.50",
"nearest_plans": [
{
"plan_id": "1239402174908207104",
"symbol": "AAPL.US",
"stock_name": "Apple Inc.",
"market": "US",
"status": "Active",
"per_invest_amount": "100",
"invest_frequency": "Monthly",
"invest_day_of_month": "15",
"next_trd_date": "1778853600",
"cum_amount": "0",
"cum_profit": "0"
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | 成功 | DcaStats |
| 400 | 請求錯誤 | None |
Schemas
DcaStatsResponse
| Name | Type | Required | Description |
|---|---|---|---|
| active_count | string | false | 活躍計劃數量 |
| finished_count | string | false | 已完成計劃數量 |
| suspended_count | string | false | 已暫停計劃數量 |
| rest_days | string | false | 距下次扣款天數 |
| total_amount | string | false | 總投入金額 |
| total_profit | string | false | 總盈虧 |
| nearest_plans | object[] | false | 最近即將執行的定投計劃(結構與 DcaPlan 一致) |
nearest_plans的子項結構與 查看定投計劃 中的DcaPlan一致。

