Profit Analysis Flows
Query account cash flow history including deposits, withdrawals, dividends, and settlements.
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | Security symbol |
| page | integer | NO | Page number (default: 1) |
| size | integer | NO | Page size (default: 20) |
| derivative | boolean | NO | Include derivative positions |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"has_more": false,
"flows_list": [
{
"code": "AAPL",
"symbol": "AAPL.US",
"direction": "In",
"executed_date": "2025-11-22",
"executed_timestamp": "1763769600",
"executed_quantity": "10",
"executed_price": "180.50",
"executed_cost": "1805.00",
"describe": "Buy AAPL.US"
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | ProfitAnalysisFlowsResponse |
| 400 | Bad request | None |
Schemas
ProfitAnalysisFlowsResponse
| Name | Type | Required | Description |
|---|---|---|---|
| flows_list | object[] | true | Paginated list of flow items |
| ∟ executed_date | string | true | Execution date (e.g. 2024-01-15) |
| ∟ executed_timestamp | string | false | Execution timestamp |
| ∟ code | string | false | Security code |
| ∟ direction | string | false | Direction: In or Out |
| ∟ executed_quantity | string | false | Executed quantity |
| ∟ executed_price | string | false | Executed price |
| ∟ executed_cost | string | false | Executed cost |
| ∟ describe | string | false | Human-readable description |
| has_more | boolean | false | Whether there are more pages |

