案例股票池
大约 1 分钟
案例股票池
获取频道列表
接口地址:/stock/case/channel/pc
请求方式:GET
请求参数:
暂无
响应参数:
参数名称 | 参数说明 | 类型 | schema |
---|---|---|---|
code | integer(int32) | integer(int32) | |
data | array | PcStockCaseChannelItem | |
accessible | 可访问性 | boolean | |
name | 名称 | string | |
number | 编号 | string | |
msg | string |
响应示例:
{
"code": 0,
"data": [
{
"number": "cdzdgc",
"accessible": true,
"name": "超跌筑底股票池"
}
],
"msg": ""
}
获取案例列表
接口地址:/stock/case/pc
请求方式:GET
请求参数:
参数名称 | 参数说明 | 请求类型 | 是否必须 | 数据类型 | schema |
---|---|---|---|---|---|
number | 案例股票池频道编号 | query | true | string | |
flagDate | 股票入选日期 | query | false | date | |
current | 页码 | query | false | integer(int32) | |
size | 分页数量 | query | false | integer(int32) |
响应参数:
参数名称 | 参数说明 | 类型 | schema |
---|---|---|---|
code | integer(int32) | integer(int32) | |
data | array | StockCaseDetailResp | |
id | 案例ID | integer(int64) | |
gmtCreate | 创建时间 | string(date-time) | |
labelCode | 股票代码 | string | |
labelName | 股票名称 | string | |
score | 评分 | number | |
avgPrice | 入选价格,保留两位小数 | string | |
msg | string | ||
pagination | Pagination | Pagination | |
current | integer(int32) | ||
size | integer(int32) | ||
total | integer(int64) |
响应示例:
{
"code": 0,
"data": [
{
"id": 0,
"gmtCreate": "",
"labelCode": "",
"labelName": "",
"score": 0,
"avgPrice": "0.00"
}
],
"msg": "",
"pagination": {
"current": 0,
"size": 0,
"total": 0
}
}
获取股票信号列表
接口地址:/stock/case/signal
请求方式:GET
请求参数:
参数名称 | 参数说明 | 请求类型 | 是否必须 | 数据类型 | schema |
---|---|---|---|---|---|
labelCode | 股票代码 | query | true | string |
响应参数:
参数名称 | 参数说明 | 类型 | schema |
---|---|---|---|
code | integer(int32) | integer(int32) | |
data | array | PcStockCaseSignalResp | |
id | 案例ID | integer(int64) | |
gmtCreate | 创建时间 | string(date-time) | |
labelCode | 股票代码 | string | |
channelNumber | 频道编号 | string | |
msg | string |
响应示例:
{
"code": 0,
"data": [
{
"id": 1,
"gmtCreate": "",
"labelCode": "600000.SH",
"channelNumber": "zsdxgc"
}
],
"msg": ""
}