3-股票池
文章目录
- 3-股票池
- 一. 查询股票池支持的类型
- 二. 查询目前股票池对应的股票信息
- 三 查询股票池内距离今天类型最少/最多的股票数据
- 四. 查询股票的池统计信息
一. 查询股票池支持的类型
接口描述:
接口地址:/StockApi/stockPool/listPoolType
请求方式:GET
consumes:``
produces:["*/*"]
请求参数:
参数名称 | 参数说明 | in | 是否必须 | 数据类型 | schema |
---|---|---|---|---|---|
Authorization | Token令牌 | header | false | string |
响应示例:
{
"code": 0,
"data": [
{
"code": "",
"name": ""
}
],
"exceptionMessage": "",
"message": "",
"success": true,
"timestamp": 0
}
响应参数:
参数名称 | 参数说明 | 类型 | schema |
---|---|---|---|
code | 响应代码 | integer(int32) | integer(int32) |
data | 响应的数据 | array | 字典配置展示 |
exceptionMessage | 异常信息 | string | |
message | 响应信息 | string | |
success | 是否成功 true 为成功 false 为不成功 | boolean | |
timestamp | 当前时间戳 | integer(int64) | integer(int64) |
schema属性说明
字典配置展示
参数名称 | 参数说明 | 类型 | schema |
---|---|---|---|
code | code | string | |
name | name | string |
二. 查询目前股票池对应的股票信息
接口描述:
接口地址:/StockApi/stockPool/listNowPool/{type}
请求方式:Get
consumes:`
produces:["*/*"]
请求示例:
{
"type": 1
}
请求参数:
参数名称 | 参数说明 | in | 是否必须 | 数据类型 | schema |
---|---|---|---|---|---|
Authorization | Token令牌 | header | false | string | |
type | 类型 | url | true | 股票池统计信息 | 股票池统计信息 |
响应示例:
{
"code": 20000,
"success": true,
"timestamp": 1698386296865,
"data": [
{
"code": "000628",
"name": "高新发展",
"currDate": "2023-10-27 13:58:16",
"stockPoolType": "ZT",
"type": 1,
"nowPrice": 31.82,
"amplitude": 9.99,
"tradingValue": 0,
"floatMarket": 6111795953,
"totalMarket": 11209549600.00,
"changingProportion": 0.43,
"sealingMoney": 2961622253,
"startTime": "2023-10-27 09:25:00",
"endTime": "2023-10-27 09:25:00",
"zbCount": 0,
"lbCount": 7,
"statCount": 7,
"statDay": 7,
"bkName": "工程建设",
},
{
"code": "002232",
"name": "启明信息",
"currDate": "2023-10-27 13:58:16",
"stockPoolType": "ZT",
"type": 1,
"nowPrice": 18.51,
"amplitude": 9.98,
"tradingValue": 0,
"floatMarket": 7562231902,
"totalMarket": 7562231772.48,
"changingProportion": 1.51,
"sealingMoney": 413165560,
"startTime": "2023-10-27 09:25:00",
"endTime": "2023-10-27 09:25:00",
"zbCount": 0,
"lbCount": 2,
"statCount": 2,
"statDay": 2,
"bkName": "互联网服",
}
]
}
响应参数:
参数名称 | 参数说明 | 类型 |
---|---|---|
code | 股票编码 | string |
name | 股票名称 | string |
currDate | 当前日期 | Date |
stockPoolType | 股票池类型 | 枚举对象 |
type | 池类型 | int |
nowPrice | 最新价 | bigDecimal |
amplitude | 涨跌幅度 | bigDecimal |
tradingValue | 成交金额 | bigDecimal |
floatMarket | 流通市值 | bigDecimal |
totalMarket | 总市值 | bigDecimal |
changingProportion | 换手率 | bigDecimal |
sealingMoney | 封板资金 | bigDecimal |
startTime | 开始封板时间 | date |
endTime | 最后封板时间 | date |
zbCount | 炸板数 | int |
lbCount | 连板数 | int |
statCount | 统计数 | int |
statDay | 统计天数 | int |
bkName | 所属行业 | string |
days | 针对跌停板进行的操作 跌了几天 | int |
ocCount | 针对跌停板进行的操作 开板次数 | int |
zfProportion | 针对 昨日涨停板进行的操作 今日振幅比 | bigDecimal |
ng | 针对 强势股进行的操作 新高 | int |
lb | 针对 强势股进行的操作 量比 | bigDecimal |
reason | 针对 强势股进行的操作 原因 | string |
ods | 针对 次新股进行的操作 上市几日 | int |
startDate | 针对 次新股进行的操作 上市日期 | string |
openDate | 针对 次新股进行的操作 开板日期 | string |
查询今日涨停 type 为1:
查询今日跌停 type = 2
查询昨日涨停: type 为3
查询强势股 type = 4
查询次新股: type = 5
查询炸板股 type = 6
三 查询股票池内距离今天类型最少/最多的股票数据
接口描述:
接口地址:/StockApi/stockPool/listDaysPool
请求方式:POST
consumes:["application/json"]
produces:["*/*"]
请求示例:
{
"keyword":"",
"poolType": 1,
"startDate":"2023-02-01",
"endDate": "2023-02-14",
"leDays":4,
"geDays":2,
"totalDays":4
}
请求参数:
参数名称 | 参数说明 | in | 是否必须 | 数据类型 | schema |
---|---|---|---|---|---|
Authorization | Token令牌 | header | false | string | |
stockPoolRo | stockPoolRo | body | true | 股票池统计信息 | 股票池统计信息 |
schema属性说明
股票池统计信息
参数名称 | 参数说明 | in | 是否必须 | 数据类型 | schema |
---|---|---|---|---|---|
geDays | 大于天数 | body | false | integer(int32) | |
keywords | 股票关键字 | body | false | string | |
leDays | 小于天数 | body | false | integer(int32) | |
pageNum | 页数 | body | true | integer(int32) | |
pageSize | 每页显示最大数量 | body | true | integer(int32) | |
poolType | 股票池类型 | body | false | integer(int32) | |
totalDays | 总天数 | body | false | integer(int32) |
响应示例:
{
"code": 20000,
"success": true,
"message": null,
"timestamp": 1698387955264,
"exceptionMessage": null,
"data": {
"600853": [
"2023-10-25",
"2023-10-26"
],
"002457": [
"2023-10-25",
"2023-10-26"
]
"603768": [
"2023-10-25",
"2023-10-26"
],
"603219": [
"2023-10-25",
"2023-10-26"
]
}
}
响应参数:
参数名称 | 参数说明 | 类型 | schema |
---|---|---|---|
code | 响应代码 | integer(int32) | integer(int32) |
data | 响应的数据 | object | |
exceptionMessage | 异常信息 | string | |
message | 响应信息 | string | |
success | 是否成功 true 为成功 false 为不成功 | boolean | |
timestamp | 当前时间戳 | integer(int64) | integer(int64) |
如查询 最后 4个交易日 (totalDays =4 ) 涨停 (poolType =1) 超过 2天 (geDays > =2) 少于 4天的 (leDays <=4)
会展示出对应的股票编码和 符合条件的时间信息。 keyword 为股票编码的筛选信息。
四. 查询股票的池统计信息
接口描述:
接口地址:/StockApi/stockPool/listPool
请求方式:POST
consumes:["application/json"]
produces:["*/*"]
请求示例:
{
"pageSize": 15,
"pageNum": 1,
"startDate": "2023-08-01",
"endDate": "2023-09-05",
"poolType": "1",
"keywords": ""
}
请求参数:
参数名称 | 参数说明 | in | 是否必须 | 数据类型 | schema |
---|---|---|---|---|---|
Authorization | Token令牌 | header | false | string | |
stockPoolRo | stockPoolRo | body | true | 股票池统计信息 | 股票池统计信息 |
schema属性说明
股票池统计信息
参数名称 | 参数说明 | in | 是否必须 | 数据类型 | schema |
---|---|---|---|---|---|
endDate | 股票的查询结束日期 | body | false | string | |
keywords | 股票关键字 | body | false | string | |
pageNum | 页数 | body | true | integer(int32) | |
pageSize | 每页显示最大数量 | body | true | integer(int32) | |
poolType | 股票池类型 | body | false | integer(int32) | |
startDate | 股票的查询开始日期 | body | false | string |
响应示例:
{
"code": 20000,
"success": true,
"message": null,
"timestamp": 1698389123502,
"exceptionMessage": null,
"data": {
"total": 35,
"list": [
{
"code": "600853",
"name": "龙建股份",
"detailList": [
{
"currDate": "2023-10-26",
"type": 1,
"amplitudeProportion": "10.0200",
"closePrice": "4.8300",
"sign": 1
}
]
},
{
"code": "002457",
"name": "青龙管业",
"detailList": [
{
"currDate": "2023-10-26",
"type": 1,
"amplitudeProportion": "9.9900",
"closePrice": "10.5700",
"sign": 1
}
]
}
]
}
}
响应参数:
参数名称 | 参数说明 | 类型 | schema |
---|---|---|---|
code | 股票编码 | 6位数编码 | |
name | 股票名称 | string | |
detailList | 详情信息 | List |
其中, HistoryRelationVo 对应的信息是:
参数名称 | 参数说明 | 类型 |
---|---|---|
currDate | 交易日期 | string |
type | 类型 1赚 -1赔 0是平 | int |
amplitudeProportion | 涨跌比例 | string |
closePrice | 收盘价 | string |
sign | 是否有标识 0为没有标识 1为有标识 | int |
如 查询 10-21 到 10-26 号 各个股票有涨停的情况。