Check DCA Support
Check whether the given securities support DCA recurring investment.
SDK Links
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| symbols | string[] | YES | List of security symbols to check |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"infos": [
{
"symbol": "AAPL.US",
"support_regular_saving": true
},
{
"symbol": "700.HK",
"support_regular_saving": false
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | DcaSupportListResponse |
| 400 | Bad request | None |
Schemas
DcaSupportListResponse
| Name | Type | Required | Description |
|---|---|---|---|
| infos | object[] | true | List of DCA support results |
| ∟ symbol | string | true | Security symbol |
| ∟ support_regular_saving | boolean | true | Whether DCA is supported |

