跳到主要内容

策略研究产出列表

GET/research/experiments/{id}/strategies在线调试
GET https://api.shengkezhi.com/open/v1/research/experiments/{id}/strategies
等效 curl
curl "https://api.shengkezhi.com/open/v1/research/experiments/{id}/strategies" \
  -H "Authorization: Bearer sk_xxx"

GET /research/experiments/{id}/strategies — 策略研究产出列表。

需在请求头携带 Authorization: Bearer sk_xxx

路径参数

参数必填说明
id执行 ID

响应

响应 dataExperimentStrategyList

字段类型必填说明
itemsExperimentStrategyItem[]本次执行产出的策略清单项。
totalinteger策略总数。

调用示例

curl "https://api.shengkezhi.com/open/v1/research/experiments/experiment-20260724-001/strategies" -H "Authorization: Bearer sk_xxx"
{
"code": 0,
"data": {
"items": [
{
"code": "TS_1D_4E70093D",
"end_date": "2026-01-10",
"factor_count": 2,
"metrics": {
"夏普比率": 1.23,
"年化收益": 0.21,
"最大回撤": -0.05
},
"model": "TS001",
"passed": true,
"route": "90ec76ba1f23",
"start_date": "2026-01-01",
"symbol_count": 2,
"verdict": {
"passed": true,
"reason": "全时段夏普与最大回撤均达标"
},
"weight_type": "ts"
},
{
"code": "TS_1D_9B12C4A7",
"end_date": "2026-01-10",
"factor_count": 2,
"metrics": {
"夏普比率": 1.23,
"年化收益": 0.21,
"最大回撤": -0.05
},
"model": "TS001",
"passed": false,
"route": "90ec76ba1f23",
"start_date": "2026-01-01",
"symbol_count": 2,
"verdict": {
"passed": true,
"reason": "全时段夏普与最大回撤均达标"
},
"weight_type": "ts"
}
],
"total": 2
},
"msg": "ok"
}