Check DCA Support
Not for Longbridge US Accounts
This method requires an AP data-center account (HK / SG). US data-center accounts will receive a region restriction error. AP accounts can call this method with any supported symbol, including US stocks.
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 |