股票基础数据(二)

news2024/11/15 23:30:21

二. 股票基础数据

文章目录

一. 查询股票融资信息数据

接口描述:

接口地址:/StockApi/stock/findCanRong

请求方式:Get

consumes:["application/json"]

produces:["*/*"]

请求参数

参数名称参数说明in是否必须数据类型schema
AuthorizationToken令牌headerfalsestring

响应示例:

{
	"code": 0,
	"data": [],
	"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)

image-20231026194137066

二. 查询所有的股票信息

接口描述:

接口地址:/StockApi/stock/list

请求方式POST

consumes:["application/json"]

produces:["*/*"]

请求示例

{
	"code": "",
	"codeType": 0,
	"codes": [],
	"count": 0,
	"days": 0,
	"endDate": "",
	"exchange": 0,
	"keyword": "",
	"pageNum": 0,
	"pageSize": 0,
	"startDate": "",
	"subPattern": "",
	"type": 0,
	"willZtEndTime": "",
	"zbType": ""
}

请求参数

参数名称参数说明in是否必须数据类型schema
AuthorizationToken令牌headerfalsestring
stockRostockRobodytrue股票对象股票对象

schema属性说明

股票对象

参数名称参数说明in是否必须数据类型schema
keyword搜索的关键字bodyfalsestring
pageNum页数bodytrueinteger(int32)
pageSize每页显示最大数量bodytrueinteger(int32)

响应示例:

{
	"code": 0,
	"data": {
		"list": [
			{
				"amplitude": 0,
				"amplitudeProportion": "",
				"closingPrice": 0,
				"code": "",
				"date": "",
				"exchange": 0,
				"fullCode": "",
				"highestPrice": 0,
				"lowestPrice": 0,
				"name": "",
				"nowPrice": 0,
				"openingPrice": 0,
				"tradingValue": 0,
				"tradingVolume": 0,
				"yesClosingPrice": 0,
				"zt": 0
			}
		],
		"total": 0
	},
	"exceptionMessage": "",
	"message": "",
	"success": true,
	"timestamp": 0
}

响应参数:

参数名称参数说明类型schema
code响应代码integer(int32)integer(int32)
data响应的数据分页展示«股票展示信息»分页展示«股票展示信息»
exceptionMessage异常信息string
message响应信息string
success是否成功 true 为成功 false 为不成功boolean
timestamp当前时间戳integer(int64)integer(int64)

schema属性说明

分页展示«股票展示信息»

参数名称参数说明类型schema
listlist数据array股票展示信息
total总数integer(int64)

股票展示信息

参数名称参数说明类型schema
amplitude涨跌幅度number
amplitudeProportion涨跌幅度百分比string
closingPrice收盘价number
code股票的代码string
date当前天string
exchange交易所类型integer(int32)
fullCode股票的全代码string
highestPrice最高价格number
lowestPrice最低价格number
name股票的名称string
nowPrice当前的价格number
openingPrice开盘价number
tradingValue成交量金额number
tradingVolume成交量(股)integer(int64)
yesClosingPrice昨天的收盘价number
zt是否涨停 1为涨停 0为不涨停integer(int32)

image-20231026194459734

三. 查询所有的股票类型信息

接口描述:

接口地址:/StockApi/stock/listDbType

请求方式:Get

consumes:

produces:["*/*"]

请求参数

参数名称参数说明in是否必须数据类型schema
AuthorizationToken令牌headerfalsestring

响应示例:

{
	"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
codecodestring
namenamestring

image-20231026195241501

{
    "code": 20000,
    "success": true,
    "message": null,
    "timestamp": 1698321126695,
    "exceptionMessage": null,
    "data": [
        {
            "code": "1",
            "name": "上海"
        },
        {
            "code": "2",
            "name": "深圳"
        },
        {
            "code": "3",
            "name": "创业板"
        },
        {
            "code": "4",
            "name": "北京板"
        },
        {
            "code": "5",
            "name": "上海和深圳"
        },
        {
            "code": "6",
            "name": "上海和深圳和创业"
        },
        {
            "code": "7",
            "name": "上海和深圳和创业和北京"
        },
        {
            "code": "8",
            "name": "所有"
        }
    ]
}

四. 根据类型查询所有的股票数据信息

接口描述:

接口地址:/StockApi/stock/listAllByDbType/{codeType}

请求方式:Get

produces:["*/*"]

请求示例

/StockApi/stock/listAllByDbType/1

其中, codeType 支持的 类型枚举为:

 	SH(1, "上海"),
    SZ(2, "深圳"),
    CY(3, "创业板"),
    BJ(4, "北京板"),
    SH_SZ(5, "上海和深圳"),
    SH_SZ_CY(6, "上海和深圳和创业"),
    SH_SZ_CY_BJ(7, "上海和深圳和创业和北京"),
    ALL(8, "所有");

请求参数

参数名称参数说明in是否必须数据类型schema
AuthorizationToken令牌headerfalsestring

响应示例:

{
	"code": 0,
	"data": [],
	"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)

image-20231026195016988

五. 查询股票当前的基本信息

接口描述:

接口地址:/StockApi/stockCrawler/getStockInfo

请求方式Get

consumes:["application/json"]

produces:["*/*"]

请求示例

{
	"code": ""
}

请求参数

参数名称参数说明in是否必须数据类型schema
AuthorizationToken令牌headerfalsestring
code股票六位数编码bodytruestring

schema属性说明

响应示例:

{
	"code": 0,
	"data": {
		"amplitude": 0,
		"amplitudeProportion": "",
		"closingPrice": 0,
		"code": "",
		"date": "",
		"exchange": 0,
		"fullCode": "",
		"highestPrice": 0,
		"lowestPrice": 0,
		"name": "",
		"nowPrice": 0,
		"openingPrice": 0,
		"tradingValue": 0,
		"tradingVolume": 0,
		"yesClosingPrice": 0,
		"zt": 0
	},
	"exceptionMessage": "",
	"message": "",
	"success": true,
	"timestamp": 0
}

响应参数:

参数名称参数说明类型schema
code响应代码integer(int32)integer(int32)
data响应的数据股票展示信息股票展示信息
exceptionMessage异常信息string
message响应信息string
success是否成功 true 为成功 false 为不成功boolean
timestamp当前时间戳integer(int64)integer(int64)

schema属性说明

股票展示信息

参数名称参数说明类型schema
amplitude涨跌幅度number
amplitudeProportion涨跌幅度百分比string
closingPrice收盘价number
code股票的代码string
date当前天string
exchange交易所类型integer(int32)
fullCode股票的全代码string
highestPrice最高价格number
lowestPrice最低价格number
name股票的名称string
nowPrice当前的价格number
openingPrice开盘价number
tradingValue成交量金额number
tradingVolume成交量(股)integer(int64)
yesClosingPrice昨天的收盘价number
zt是否涨停 1为涨停 0为不涨停integer(int32)

http://127.0.0.1:8081/StockApi/stockCrawler/getStockInfo?code=002812

image-20231026200235659

六. 查询股票的K线图, 返回对应的 base64 信息

接口描述:

接口地址:/StockApi/stockCrawler/getStockKline

请求方式POST

consumes:["application/json"]

produces:["*/*"]

请求示例

{
	"code": "002812",
	"type": 2
}

请求参数

参数名称参数说明in是否必须数据类型schema
AuthorizationToken令牌headerfalsestring
stockRostockRobodytrue股票对象股票对象

schema属性说明

股票对象

参数名称参数说明in是否必须数据类型schema
code股票的编码bodytruestring
type查看K线的类型bodytrueinteger(int32)1为分钟 2为天 3为周 4为月

响应示例:

{
	"code": 0,
	"data": "",
	"exceptionMessage": "",
	"message": "",
	"success": true,
	"timestamp": 0
}

响应参数:

参数名称参数说明类型schema
code响应代码integer(int32)integer(int32)
data响应的数据string
exceptionMessage异常信息string
message响应信息string
success是否成功 true 为成功 false 为不成功boolean
timestamp当前时间戳integer(int64)integer(int64)

获取天级别 K线:

image-20231026201059924

七. 展示股票的K线图数据, 对应的是数据信息

接口描述:

接口地址:/StockApi/stockCrawler/showKData

请求方式POST

consumes:["application/json"]

produces:["*/*"]

请求示例

{
	"code": "",
	"type": 0,
    "count":90
}

请求参数

参数名称参数说明in是否必须数据类型schema
AuthorizationToken令牌headerfalsestring
stockRostockRobodytrue股票对象股票对象

schema属性说明

股票对象

参数名称参数说明in是否必须数据类型schema
code股票的编码bodytruestring
type查看K线的类型bodytrueinteger(int32)1为1分钟 2为天 5为5分钟 6为15分钟 7为30分钟 8为60分钟
count数据数量bodyfalseint数据的数据,默认为 90

响应示例:

{
	"code": 0,
	"data": [
		{
			"amplitude": 0,
			"amplitudeProportion": 0,
			"changingProportion": 0,
			"close": 0,
			"code": "",
			"day": "",
			"high": 0,
			"id": 0,
			"low": 0,
			"name": "",
			"open": 0,
			"preClose": 0,
			"priceChange": 0,
			"subAmplitude": 0,
			"subAmplitudeProportion": 0,
			"than": 0,
			"tradeDate": "",
			"tradingValue": 0,
			"volume": 0
		}
	],
	"exceptionMessage": "",
	"message": "",
	"success": true,
	"timestamp": 0
}

响应参数:

参数名称参数说明类型schema
code响应代码integer(int32)integer(int32)
data响应的数据array股票K线数据展示
exceptionMessage异常信息string
message响应信息string
success是否成功 true 为成功 false 为不成功boolean
timestamp当前时间戳integer(int64)integer(int64)

schema属性说明

股票K线数据展示

参数名称参数说明类型schema
amplitude涨跌幅度number
amplitudeProportion涨跌幅度百分比number
changingProportion换手率number
close收盘价number
code股票的代码string
day当前天string
high最高价格number
idinteger(int32)
low最低价格number
name股票的名称string
open开盘价number
preClose前收number
priceChange前涨跌额度number
subAmplitude今日震幅 high -lownumber
subAmplitudeProportion今日震幅比例number
than量比number
tradeDate交易天string(date-time)
tradingValue成交量金额number
volume成交量(股)integer(int64)

按照日期升序排列

查询天 type =2

image-20231026201752799

查询 15分钟的, type : 6

image-20231026202023766

八. 展示股票的K线图, 以图形展示

接口描述:

接口地址:/StockApi/stockCrawler/showStockKline

请求方式POST

consumes:["application/json"]

produces:["*/*"]

请求示例

{
	"code": "",
	"type": 0
}

请求参数

参数名称参数说明in是否必须数据类型schema
AuthorizationToken令牌headerfalsestring
stockRostockRobodytrue股票对象股票对象

schema属性说明

股票对象

参数名称参数说明in是否必须数据类型schema
code股票的编码bodytruestring
type查看K线的类型bodytrueinteger(int32)1为分钟 2为天

响应示例:

图片形式展示

如 展示股票的今日分时图 type 为1

image-20231026202743149

展示天 type = 2

image-20231026202820353

九. 展示股票某一天的分时数据

接口描述:

接口地址:/StockApi/stockCrawler/showDayKData

请求方式POST

consumes:["application/json"]

produces:["*/*"]

请求示例

{
	"code": "002812",
	"startDate": "2023-10-26",
	"type": 1
}

请求参数

参数名称参数说明in是否必须数据类型schema
AuthorizationToken令牌headerfalsestring
stockRostockRobodytrue股票对象股票对象

schema属性说明

股票对象

参数名称参数说明in是否必须数据类型schema
code股票的编码bodytruestring
type查看K线的类型bodytrueinteger(int32)1为1分钟 5为5分钟 6为15分钟 7为30分钟 8为60分钟 为1的话,只能是当前天。
startDate展示那一天的数据bodyfalsestring选择日期,不传入的话为最新的交易日
willZtEndTime截止要涨停的时间bodyfalsestring截止涨停的时间, 即在这个时间点之前,是否有要涨停的动作。 打板时用
默认为: 10:00:00

响应示例:

{
	"code": 0,
	"data": {
		"details": [],
		"code":"002812",
        "date":"2023-10-26",
		"willZt": false
	},
	"exceptionMessage": "",
	"message": "",
	"success": true,
	"timestamp": 0
}

响应参数:

参数名称参数说明类型schema
code响应代码integer(int32)integer(int32)
data响应的数据股票今日涨停和昨日连板数据分析股票今日涨停和昨日连板数据分析
exceptionMessage异常信息string
message响应信息string
success是否成功 true 为成功 false 为不成功boolean
timestamp当前时间戳integer(int64)integer(int64)

schema属性说明

参数名称参数说明类型schema
code股票编码string
date日期string
details明细数据array
willZt是否将要涨停boolean

分时数据查询: type 为1

image-20231026204831965

5 分钟的数据查询, 日期可以为 其他天, 但要在最新 30天以内。

image-20231026204914597

十. 查询股票关联的版块信息

接口描述:

接口地址:/StockApi/stockCrawler/listRelationBk

请求方式:Get

consumes:

produces:["*/*"]

请求示例

{
	"code": "002812"
}

请求参数

参数名称参数说明in是否必须数据类型schema
AuthorizationToken令牌headerfalsestring
code股票编码bodytruestring股票六位数编码

响应示例:

{
	"code": 0,
	"data": [
		{
			"amplitude": 0,
			"bkCode": "",
			"bkName": "",
			"stockCode": ""
		}
	],
	"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
amplitude幅度integer(int32)
bkCode版块编码string
bkName版块名称string
stockCode股票编码string

image-20231026205240920

十一. 展示股票历史资金信息

接口描述:

接口地址:/StockApi/stockCrawler/showHistoryMoney

请求方式:Get

consumes:

produces:["*/*"]

请求示例

{
	"code": "002812"
}

请求参数

参数名称参数说明in是否必须数据类型schema
AuthorizationToken令牌headerfalsestring
code股票编码bodytruestring股票编码

响应示例:

{
	"code": 0,
	"data": [
		{
			"bkCode": "",
			"bkName": "",
			"bkNowPrice": "",
			"bkNowProportion": 0,
			"currentDate": "",
			"currentDateStr": "",
			"market": 0,
			"sortNum": 0,
			"todayMainInflow": "",
			"todayMainInflowCode": "",
			"todayMainInflowName": "",
			"todayMainInflowProportion": "",
			"todayMiddleInflow": "",
			"todayMiddleInflowProportion": "",
			"todayMoreInflow": "",
			"todayMoreInflowProportion": "",
			"todaySmallInflow": "",
			"todaySmallInflowProportion": "",
			"todaySuperInflow": "",
			"todaySuperInflowProportion": "",
			"type": 0
		}
	],
	"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
bkCode版块编码string
bkName版块名称string
bkNowPrice最新价string
bkNowProportion涨跌幅number(double)
currentDate当前时间string(date-time)
currentDateStr当前时间字符串形式string
market市场integer(int32)
sortNum版块排名数integer(int32)
todayMainInflow今日主力净注入净额string
todayMainInflowCode今日主力净注入股票编码string
todayMainInflowName今日主力净注入股票名称string
todayMainInflowProportion今日主力净注入净额 占比string
todayMiddleInflow今日 中单净注入净额string
todayMiddleInflowProportion今日 中单净注入净额 占比string
todayMoreInflow今日 大单净注入净额string
todayMoreInflowProportion今日 大单净注入净额 占比string
todaySmallInflow今日 小单净注入净额string
todaySmallInflowProportion今日 小单净注入净额 占比string
todaySuperInflow今日 超大净注入净额string
todaySuperInflowProportion今日 超大净注入净额 占比string
type类型integer(int32)

image-20231026205521873

十二. 展示股票今日资金信息

接口描述:

接口地址:/StockApi/stockCrawler/showTodayMoney

请求方式Get

consumes:

produces:["*/*"]

请求示例

{
	"code": "",
	"codeType": 0,
	"codes": [],
	"count": 0,
	"days": 0,
	"endDate": "",
	"exchange": 0,
	"keyword": "",
	"pageNum": 0,
	"pageSize": 0,
	"startDate": "",
	"subPattern": "",
	"type": 0,
	"willZtEndTime": "",
	"zbType": ""
}

请求参数

参数名称参数说明in是否必须数据类型schema
AuthorizationToken令牌headerfalsestring
code股票编码bodytruestring股票编码

响应示例:

{
	"code": 0,
	"data": [
		{
			"bkCode": "",
			"bkName": "",
			"bkNowPrice": "",
			"bkNowProportion": "",
			"code": "",
			"currentDate": "",
			"name": "",
			"todayMainInflow": "",
			"todayMiddleInflow": "",
			"todayMoreInflow": "",
			"todaySmallInflow": "",
			"todaySuperInflow": "",
			"type": 0
		}
	],
	"exceptionMessage": "",
	"message": "",
	"success": true,
	"timestamp": 0
}

响应参数:

参数名称参数说明类型schema
code响应代码integer(int32)integer(int32)
data响应的数据array股票今日资金数据展示Vo
exceptionMessage异常信息string
message响应信息string
success是否成功 true 为成功 false 为不成功boolean
timestamp当前时间戳integer(int64)integer(int64)

schema属性说明

股票今日资金数据展示Vo

参数名称参数说明类型schema
bkCode股票编码string
bkName股票名称string
bkNowPrice最新价string
bkNowProportion最新价涨跌比例string
code股票编码string
currentDate日期string(date-time)
name股票名称string
todayMainInflow今日主力净注入净额string
todayMiddleInflow今日 中单净注入净额string
todayMoreInflow今日 大单净注入净额string
todaySmallInflow今日 小单净注入净额string
todaySuperInflow今日 超大净注入净额string
type类型integer(int32)

image-20231026205743797

十三. 获取天级别最近的历史记录

接口描述:

接口地址:/StockApi/stockHistory/getLastHistory/{code}/{days}

请求方式GET

consumes:``

produces:["*/*"]

请求参数

参数名称参数说明in是否必须数据类型schema
AuthorizationToken令牌headerfalsestring
codecodepathtruestring
daysdayspathtrueinteger

响应示例:

{
	"code": 0,
	"data": [
		{
			"amount": 0,
			"amplitude": 0,
			"bias12": 0,
			"bias24": 0,
			"bias6": 0,
			"boll": {
				"continueExpand": 0,
				"d": 0,
				"m": 0,
				"u": 0
			},
			"cci14": {
				"tp": 0,
				"value": 0
			},
			"changingProportion": 0,
			"close": 0,
			"closeTime": "",
			"dmi": {
				"adx": 0,
				"adxr": 0,
				"dim": 0,
				"dip": 0,
				"dmm": 0,
				"dmp": 0,
				"dx": 0,
				"tr": 0
			},
			"ema10": 0,
			"ema20": 0,
			"ema5": 0,
			"ema60": 0,
			"high": 0,
			"kdj": {
				"d": 0,
				"j": 0,
				"k": 0
			},
			"low": 0,
			"ma10": 0,
			"ma20": 0,
			"ma40": 0,
			"ma5": 0,
			"ma60": 0,
			"macd": {
				"continueRise": 0,
				"dea": 0,
				"dif": 0,
				"fastEma": 0,
				"macdValue": 0,
				"slowEma": 0
			},
			"open": 0,
			"pctChange": 0,
			"preClose": 0,
			"priceChange": 0,
			"qpcv": {
				"arise": 0,
				"crise": 0,
				"vrise": 0,
				"yang": 0
			},
			"rsi12": {
				"emaDown": 0,
				"emaUp": 0,
				"value": 0
			},
			"rsi24": {
				"emaDown": 0,
				"emaUp": 0,
				"value": 0
			},
			"rsi6": {
				"emaDown": 0,
				"emaUp": 0,
				"value": 0
			},
			"stockName": "",
			"symbol": "",
			"td": 0,
			"timestamp": "",
			"top3In20": {
				"ath": 0,
				"atl": 0,
				"vth": 0,
				"vtl": 0
			},
			"top4In30": {
				"ath": 0,
				"atl": 0,
				"vth": 0,
				"vtl": 0
			},
			"top5In60": {
				"ath": 0,
				"atl": 0,
				"vth": 0,
				"vtl": 0
			},
			"volume": 0,
			"wr10": 0,
			"wr14": 0,
			"wr20": 0,
			"wr6": 0
		}
	],
	"exceptionMessage": "",
	"message": "",
	"success": true,
	"timestamp": 0
}

响应参数:

参数名称参数说明类型schema
code响应代码integer(int32)integer(int32)
data响应的数据arrayStockIndicatorCarrierDomain
exceptionMessage异常信息string
message响应信息string
success是否成功 true 为成功 false 为不成功boolean
timestamp当前时间戳integer(int64)integer(int64)

schema属性说明

StockIndicatorCarrierDomain

参数名称参数说明类型schema
amountnumber(double)
amplitudenumber(double)
bias12number(double)
bias24number(double)
bias6number(double)
bollBOLLBOLL
cci14CCICCI
changingProportionnumber
closenumber(double)
closeTimestring(date-time)
dmiDMIDMI
ema10number(double)
ema20number(double)
ema5number(double)
ema60number(double)
highnumber(double)
kdjKDJKDJ
lownumber(double)
ma10number(double)
ma20number(double)
ma40number(double)
ma5number(double)
ma60number(double)
macdMACDMACD
opennumber(double)
pctChangenumber(double)
preClosenumber(double)
priceChangenumber(double)
qpcvXlcQPCVXlcQPCV
rsi12RSIRSI
rsi24RSIRSI
rsi6RSIRSI
stockNamestring
symbolstring
tdinteger(int32)
timestampstring(date-time)
top3In20XlcTOPMVXlcTOPMV
top4In30XlcTOPMVXlcTOPMV
top5In60XlcTOPMVXlcTOPMV
volumenumber(double)
wr10number(double)
wr14number(double)
wr20number(double)
wr6number(double)

BOLL

参数名称参数说明类型schema
continueExpandinteger(int32)
dnumber(double)
mnumber(double)
unumber(double)

CCI

参数名称参数说明类型schema
tpnumber(double)
valuenumber(double)

DMI

参数名称参数说明类型schema
adxnumber(double)
adxrnumber(double)
dimnumber(double)
dipnumber(double)
dmmnumber(double)
dmpnumber(double)
dxnumber(double)
trnumber(double)

KDJ

参数名称参数说明类型schema
dnumber(double)
jnumber(double)
knumber(double)

MACD

参数名称参数说明类型schema
continueRiseinteger(int32)
deanumber(double)
difnumber(double)
fastEmanumber(double)
macdValuenumber(double)
slowEmanumber(double)

XlcQPCV

参数名称参数说明类型schema
ariseinteger(int32)
criseinteger(int32)
vriseinteger(int32)
yanginteger(int32)

RSI

参数名称参数说明类型schema
emaDownnumber(double)
emaUpnumber(double)
valuenumber(double)

XlcTOPMV

参数名称参数说明类型schema
athnumber(double)
atlnumber(double)
vthnumber(double)
vtlnumber(double)

image-20231026210021729

十四. 查询股票的历史记录

接口描述:

接口地址:/StockApi/stockHistory/history

请求方式POST

consumes:["application/json"]

produces:["*/*"]

请求示例

{
	"code": "",
	"endDate": "",
	"pageNum": 0,
	"pageSize": 0,
	"startDate": ""
}

请求参数

参数名称参数说明in是否必须数据类型schema
AuthorizationToken令牌headerfalsestring
stockRostockRobodytrue股票对象股票对象

schema属性说明

股票对象

参数名称参数说明in是否必须数据类型schema
code股票的编码bodyfalsestring
endDate结束日期bodyfalsestring
pageNum页数bodytrueinteger(int32)
pageSize每页显示最大数量bodytrueinteger(int32)
startDate开始日期bodyfalsestring

响应示例:

{
	"code": 0,
	"data": {
		"list": [
			{
				"amplitude": 0,
				"amplitudeProportion": 0,
				"appointThan": "",
				"avgPrice": 0,
				"buyHand": 0,
				"changingProportion": 0,
				"closingPrice": 0,
				"code": "",
				"currDate": "",
				"dynamicPriceRatio": 0,
				"highestPrice": 0,
				"highestTime": "",
				"innerDish": 0,
				"lowestPrice": 0,
				"lowestTime": "",
				"ltMarket": 0,
				"market": 0,
				"name": "",
				"openingPrice": 0,
				"outDish": 0,
				"sellHand": 0,
				"staticPriceRatio": 0,
				"than": 0,
				"tradingValue": 0,
				"tradingVolume": 0,
				"ttmPriceRatio": 0,
				"yesClosingPrice": 0
			}
		],
		"total": 0
	},
	"exceptionMessage": "",
	"message": "",
	"success": true,
	"timestamp": 0
}

响应参数:

参数名称参数说明类型schema
code响应代码integer(int32)integer(int32)
data响应的数据分页展示«股票记录展示Vo»分页展示«股票记录展示Vo»
exceptionMessage异常信息string
message响应信息string
success是否成功 true 为成功 false 为不成功boolean
timestamp当前时间戳integer(int64)integer(int64)

schema属性说明

分页展示«股票记录展示Vo»

参数名称参数说明类型schema
listlist数据array股票记录展示Vo
total总数integer(int64)

股票记录展示Vo

参数名称参数说明类型schema
amplitude涨跌额number
amplitudeProportion涨跌幅度number
appointThan委比string
avgPrice平均价number
buyHand买手integer(int32)
changingProportion换手率number
closingPrice收盘价number
code编码string
currDate当前日期string(date-time)
dynamicPriceRatio动态的市盈率number
highestPrice最高价number
highestTime最高价时间string(date-time)
innerDish内盘integer(int32)
lowestPrice最低价number
lowestTime最低价时间string(date-time)
ltMarket流动市值number
market市值number
name名称string
openingPrice开盘价number
outDish外盘integer(int32)
sellHand卖手integer(int32)
staticPriceRatio静态的市盈率number
than量比number
tradingValue成交额number
tradingVolume成交量number
ttmPriceRatiottm 的市盈率number
yesClosingPrice昨日收盘价number

按照日期 降序展示

image-20231026210306693

十五. 查看天/星期范围统计的历史记录

接口描述:

接口地址:/StockApi/stockHistory/listDayRange

请求方式POST

consumes:["application/json"]

produces:["*/*"]

请求示例

{
	"code": "",
	"endDate": "",
	"endDayNum": 0,
	"month": 0,
	"pageNum": 0,
	"pageSize": 0,
	"startDate": "",
	"startDayNum": 0,
	"weeks": []
}

请求参数

参数名称参数说明in是否必须数据类型schema
AuthorizationToken令牌headerfalsestring
stockDayStatRostockDayStatRobodytrue股票天数统计Ro股票天数统计Ro

schema属性说明

股票天数统计Ro

参数名称参数说明in是否必须数据类型schema
code股票的编码bodyfalsestring
endDate结束日期bodyfalsestring
endDayNum结束的天数字bodyfalseinteger(int32)
month月份bodyfalseinteger(int32)
pageNum页数bodytrueinteger(int32)
pageSize每页显示最大数量bodytrueinteger(int32)
startDate开始日期bodyfalsestring
startDayNum开始的天数字bodyfalseinteger(int32)
weeks星期几的集合bodyfalsearray

响应示例:

{
	"code": 0,
	"data": {
		"list": [
			{
				"amplitude": 0,
				"amplitudeProportion": 0,
				"appointThan": "",
				"avgPrice": 0,
				"buyHand": 0,
				"changingProportion": 0,
				"closingPrice": 0,
				"code": "",
				"currDate": "",
				"dynamicPriceRatio": 0,
				"highestPrice": 0,
				"highestTime": "",
				"innerDish": 0,
				"lowestPrice": 0,
				"lowestTime": "",
				"ltMarket": 0,
				"market": 0,
				"name": "",
				"openingPrice": 0,
				"outDish": 0,
				"sellHand": 0,
				"staticPriceRatio": 0,
				"than": 0,
				"tradingValue": 0,
				"tradingVolume": 0,
				"ttmPriceRatio": 0,
				"yesClosingPrice": 0
			}
		],
		"total": 0
	},
	"exceptionMessage": "",
	"message": "",
	"success": true,
	"timestamp": 0
}

响应参数:

参数名称参数说明类型schema
code响应代码integer(int32)integer(int32)
data响应的数据分页展示«股票记录展示Vo»分页展示«股票记录展示Vo»
exceptionMessage异常信息string
message响应信息string
success是否成功 true 为成功 false 为不成功boolean
timestamp当前时间戳integer(int64)integer(int64)

schema属性说明

分页展示«股票记录展示Vo»

参数名称参数说明类型schema
listlist数据array股票记录展示Vo
total总数integer(int64)

股票记录展示Vo

参数名称参数说明类型schema
amplitude涨跌额number
amplitudeProportion涨跌幅度number
appointThan委比string
avgPrice平均价number
buyHand买手integer(int32)
changingProportion换手率number
closingPrice收盘价number
code编码string
currDate当前日期string(date-time)
dynamicPriceRatio动态的市盈率number
highestPrice最高价number
highestTime最高价时间string(date-time)
innerDish内盘integer(int32)
lowestPrice最低价number
lowestTime最低价时间string(date-time)
ltMarket流动市值number
market市值number
name名称string
openingPrice开盘价number
outDish外盘integer(int32)
sellHand卖手integer(int32)
staticPriceRatio静态的市盈率number
than量比number
tradingValue成交额number
tradingVolume成交量number
ttmPriceRatiottm 的市盈率number
yesClosingPrice昨日收盘价number

image-20231026210524089

十六. 展示股票今日资金信息,Image 处理成图进行展示

接口描述:

接口地址:/StockApi/stockHistory/showTodayMoneyImage

请求方式Get

consumes:["application/json"]

produces:["*/*"]

请求示例

{
	"code": ""
}

请求参数

参数名称参数说明in是否必须数据类型schema
AuthorizationToken令牌headerfalsestring
code股票编码bodytruestring股票对象

schema属性说明

十七. 查看最近多少天某个属性的涨跌幅度值

接口描述:

接口地址:/StockApi/stockHistory/stageZDFRange

请求方式POST

consumes:["application/json"]

produces:["*/*"]

请求示例

{
    "property":"closingPrice",
    "code":"002812",
    "startDate":"2023-10-11",
    "endDate": "2023-10-26"
}

请求参数

参数名称参数说明in是否必须数据类型schema
AuthorizationToken令牌headerfalsestring
stageRostageRobodytrue阶段性的Ro阶段性的Ro

schema属性说明

阶段性的Ro

参数名称参数说明in是否必须数据类型schema
code股票编码bodytruestring
startDate开始日期bodytruestring
endDate结束日期bodytruestring
property股票的某个属性bodytruestring属性支持 HistoryVo 中的相关的 double 属性

响应示例:

{
	"code": 0,
	"data": {
		"changeValue": 0,
		"codes": [],
		"details": []
	},
	"exceptionMessage": "",
	"message": "",
	"success": true,
	"timestamp": 0
}

响应参数:

参数名称参数说明类型schema
code响应代码integer(int32)integer(int32)
data响应的数据选中的策略展示VO选中的策略展示VO
exceptionMessage异常信息string
message响应信息string
success是否成功 true 为成功 false 为不成功boolean
timestamp当前时间戳integer(int64)integer(int64)

schema属性说明

选中的策略展示VO

参数名称参数说明类型schema
changeValue幅度值number(double)
codes股票编码集合array
details详情信息array

image-20231026212248784

十八. 查询近一个月的更新记录信息

接口描述:

接口地址:/StockApi/stockLog/list

请求方式POST

consumes:["application/json"]

produces:["*/*"]

请求示例

{
  "pageSize": 15,
  "pageNum": 1,
  "code": "",
  "startDate": "2023-10-12",
  "endDate": "2023-10-26",
  "udpateType": "1"  
}

请求参数

参数名称参数说明in是否必须数据类型schema
AuthorizationToken令牌headerfalsestring
stockUpdateLogRostockUpdateLogRobodytrue股票更新日志Ro股票更新日志Ro

schema属性说明

股票更新日志Ro

参数名称参数说明in是否必须数据类型schema
code股票的编码bodyfalsestring
endDate结束日期bodytruestring
pageNum页数bodytrueinteger(int32)
pageSize每页显示最大数量bodytrueinteger(int32)
startDate开始日期bodytruestring
updateType更新类型 1为新上市 2为名称修改 3为退市bodyfalse

响应示例:

{
	"code": 0,
	"data": {
		"list": [
			{
				"code": "",
				"exchange": 0,
				"fullCode": "",
				"name": "",
				"updateTime": "",
				"updateType": 0
			}
		],
		"total": 0
	},
	"exceptionMessage": "",
	"message": "",
	"success": true,
	"timestamp": 0
}

响应参数:

参数名称参数说明类型schema
code响应代码integer(int32)integer(int32)
data响应的数据分页展示«股票更新历史»分页展示«股票更新历史»
exceptionMessage异常信息string
message响应信息string
success是否成功 true 为成功 false 为不成功boolean
timestamp当前时间戳integer(int64)integer(int64)

schema属性说明

分页展示«股票更新历史»

参数名称参数说明类型schema
listlist数据array股票更新历史
total总数integer(int64)

股票更新历史

参数名称参数说明类型schema
code股票codestring
exchange股票 exchangeinteger(int32)
fullCode股票 全编码string
name股票名称string
updateTime更新时间string(date-time)
updateType更新类型 1为新上市 2为名称修改 3为退市integer(int32)

image-20231026212436319

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1234606.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

JVM对象创建与内存分配

对象的创建 对象创建的主要流程: 类加载推荐博客:JVM类加载机制详解 类加载检查 虚拟机遇到一条new指令时,首先将去检查这个指令的参数是否能在常量池中定位到一个类的符号引用,并且检查这个符号引用代表的类是否已被加载、解析…

STL中set的基本概念与使用

1 定义 1.1 set内元素唯一 1.2 set内元素默认升序排序 1.3 set内元素增&#xff0c;删&#xff0c;查时间复杂度都是O(logn) 2 使用 2.1 声明 set<int> mySet;2.2 插入元素 /*插入元素*/mySet.insert(5);mySet.insert(4);mySet.insert(3);mySet.insert(2);mySet.in…

autojs(意图篇之startActivity)

使用以下函数可以直接打开指定页面 app.startActivity({packageName:包名,className:活动页面类名,root:true })下面的问题是包名与类目如何获取&#xff1a; 打开所取页面运行如下代码&#xff1a; log("包名:"currentPackage()) log("活动页面类名&#xff1…

【shell】条件语句

一、测试 1.1文件测试test test命令是内部命令 test的语法 test 条件表达式 [ 条件表达式 ] test 选项 文件 -d &#xff1a;判断是否是目录 -f &#xff1a;判断是否是普通文件 -b &#xff1a;判断是否是块设备 -c &#xff1a;判断是否是字符设备 -e &#xff1a;判断是否…

阿里 OSS鉴权访问文件

如果OSS文件设置保护&#xff0c;需要鉴权才能访问&#xff0c;添加请求头鉴权&#xff0c;SDK方法如上&#xff1b; 将鉴权信息和地址、时间返回给前端&#xff0c;前端直接从oss上读取 String filePath "/admin/2023/6/183569314928918546.png"; RequestMessage…

MindSpore基础教程:使用 MindCV和 Gradio 创建一个图像分类应用

MindSpore基础教程&#xff1a;使用 MindCV和 Gradio 创建一个图像分类应用 官方文档教程使用已经弃用的MindVision模块&#xff0c;本文是对官方文档的更新 在这篇博客中&#xff0c;我们将探索如何使用 MindSpore 框架和 Gradio 库来创建一个基于深度学习的图像分类应用。我…

场景中的解剖学方向标记_vtkAnnotatedCubeActor

开发环境&#xff1a; Windows 11 家庭中文版Microsoft Visual Studio Community 2019VTK-9.3.0.rc0vtk-example参考代码 demo解决问题&#xff1a;显示标记当前视角、空间的方位&#xff0c;关键对象vtkAnnotatedCubeActor: vtkAnnotatedCubeActor 是一个混合3D 演员&#xf…

Python如何实现模板方法设计模式?什么是模板方法设计模式?Python 模板方法设计模式示例代码

什么是模板方法&#xff08;Template Method&#xff09;设计模式&#xff1f; 模板方法&#xff08;Template Method&#xff09;是一种行为型设计模式&#xff0c;它定义了一个算法的骨架&#xff0c;将一些步骤延迟到子类中实现。这种模式允许子类为一个算法的特定步骤提供…

远程桌面访问MATLAB 2018B,提示License Manger Error -103,终极解决方案

通过远程桌面方位Windows Server系统下的MATLAB2018B&#xff0c;报错License Manger Error -103&#xff0c;Crack文件夹下的dll文件已经替换&#xff0c;同时也已经输出了lic文件&#xff0c;但是仍然无法打开。但是在本地桌面安装就没有问题。初步怀疑MATLAB的License使用机…

Java实现象棋算法

象棋算法包括搜索算法、评估函数和剪枝算法。以下是一个简单的实现&#xff1a; 搜索算法&#xff1a;使用极大极小值算法&#xff0c;即每个玩家都会做出最好的选择&#xff0c;考虑到对方也会做出最好的选择&#xff0c;所以需要搜索多层。 public int search(int depth, i…

UE5 操作WebSocket

插件&#xff1a;https://www.unrealengine.com/marketplace/zh-CN/product/websocket-client 参考&#xff1a;http://dascad.net/html/websocket/bp_index.html 1. 安装Plugings 2.测试websocket服务器 http://www.websocket-test.com/ 3.连接服务器 如果在Level BP里使用&a…

武汉站--ChatGPT/GPT4科研技术应用与AI绘图及论文高效写作

2023年随着OpenAI开发者大会的召开&#xff0c;最重磅更新当属GPTs&#xff0c;多模态API&#xff0c;未来自定义专属的GPT。微软创始人比尔盖茨称ChatGPT的出现有着重大历史意义&#xff0c;不亚于互联网和个人电脑的问世。360创始人周鸿祎认为未来各行各业如果不能搭上这班车…

传输层协议 - TCP(Transmission Control Protocol)

文章目录&#xff1a; TCP 协议关于可靠性TCP 协议段格式序号与确认序号六个标志位16位窗口大小 确认应答&#xff08;ACK&#xff09;机制超时重传机制连接管理机制连接建立&#xff08;三次握手&#xff09;连接终止&#xff08;四次挥手&#xff09;TIME_WAIT 状态CLOSE_WAI…

5.2 Windows驱动开发:内核取KERNEL模块基址

模块是程序加载时被动态装载的&#xff0c;模块在装载后其存在于内存中同样存在一个内存基址&#xff0c;当我们需要操作这个模块时&#xff0c;通常第一步就是要得到该模块的内存基址&#xff0c;模块分为用户模块和内核模块&#xff0c;这里的用户模块指的是应用层进程运行后…

经典双指针算法试题(一)

&#x1f4d8;北尘_&#xff1a;个人主页 &#x1f30e;个人专栏:《Linux操作系统》《经典算法试题 》《C》 《数据结构与算法》 ☀️走在路上&#xff0c;不忘来时的初心 文章目录 一、移动零1、题目讲解2、讲解算法原理3、代码实现 二、复写零1、题目讲解2、讲解算法原理3、…

Spring-IOC-@Import的用法

1、Car.java package com.atguigu.ioc; import lombok.Data; Data public class Car {private String cname; }2、 MySpringConfiguration2.java package com.atguigu.ioc; import org.springframework.context.annotation.Bean; import org.springframework.context.annotatio…

VBA技术资料MF85:将工作簿批量另存为PDF文件

我给VBA的定义&#xff1a;VBA是个人小型自动化处理的有效工具。利用好了&#xff0c;可以大大提高自己的工作效率&#xff0c;而且可以提高数据的准确度。我的教程一共九套&#xff0c;分为初级、中级、高级三大部分。是对VBA的系统讲解&#xff0c;从简单的入门&#xff0c;到…

香港科技大学广州|机器人与自主系统学域博士招生宣讲会—同济大学专场!!!(暨全额奖学金政策)

在机器人和自主系统领域实现全球卓越—机器人与自主系统学域 硬核科研实验室&#xff0c;浓厚创新产学研氛围&#xff01; 教授亲临现场&#xff0c;面对面答疑解惑助攻申请&#xff01; 一经录取&#xff0c;享全额奖学金1.5万/月&#xff01; &#x1f559;时间&#xff1a;…

mac 和 windows 相互传输文件【共享文件夹】

文章目录 前言创建共享文件夹mac 连接共享文件夹 前言 温馨提示&#xff1a;mac 电脑和 windows 电脑必须处于同一局域网下 本文根据创建共享文件夹的方式实现文件互相传输&#xff0c;所以两台电脑必须处于同一网络 windows 创建共享文件夹&#xff0c;mac 电脑通过 windows…

Mrakdown Nice:格式

标题 缩进 删除线 斜体 加粗