实盘策略详情
GET
/research/strategies/{code}在线调试GET https://api.shengkezhi.com/open/v1/research/strategies/{code}等效 curl
curl "https://api.shengkezhi.com/open/v1/research/strategies/{code}" \
-H "Authorization: Bearer sk_xxx"GET /research/strategies/{code} — 实盘策略详情。
需在请求头携带 Authorization: Bearer sk_xxx。
路径参数
| 参数 | 必填 | 说明 |
|---|---|---|
code | 是 | 编码 |
响应
响应 data — StrategyDetail
| 字段 | 类型 | 必填 | 说明 |
|---|---|---|---|
base_freq | string | ✔ | 策略基础频率短码(如日线 1D)。 |
code | string | ✔ | 策略编号,格式 PREFIX_FREQ_HASH8,由 problem 前缀、频率短码和因子集合哈希拼成,系统自动生成。 |
description | string | ✔ | 策略描述(strategy_create 自动生成,含 problem、route、filter 与因子摘要)。 |
outsample_sdt | string | ✔ | 样本外起始日期,此后进入后置验证与实盘跟踪区间。 |
recent_update | StrategyRecentUpdate | ✔ | 最近更新情况:最新心跳时间与最新权重日期。 |
status | string | ✔ | 三态生命周期状态,取值 实盘、暂停 或 废弃。 |
tags | string[] | ✔ | 策略标签集合(研究员或系统打的分类标记)。 |
update_time | string | ✔ | 策略元信息的最近更新时间。 |
weight_type | string | ✔ | 权重口径:ts 时序(多标的日收益取均值)或 cs 截面(多标的日收益直接求和)。 |
调用示例
curl "https://api.shengkezhi.com/open/v1/research/strategies/TS_1D_4E70093D" -H "Authorization: Bearer sk_xxx"
{
"code": 0,
"data": {
"base_freq": "日线",
"code": "TS_1D_4E70093D",
"description": "沪深龙头日线时序动量策略",
"outsample_sdt": "2026-01-03 00:00:00",
"recent_update": {
"last_heartbeat": "2026-07-29 15:00:00",
"latest_weight_date": "2026-07-29"
},
"status": "实盘",
"tags": [
"关注"
],
"update_time": "2026-07-29 15:04:00",
"weight_type": "ts"
},
"msg": "ok"
}