股票基础数据(二)

二. 股票基础数据

文章目录

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

接口描述:

接口地址:/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.mzph.cn/news/155512.shtml

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

相关文章

大模型的实践应用7-阿里的多版本通义千问Qwen大模型的快速应用与部署

大家好,我是微学AI,今天给大家介绍一下大模型的实践应用7-阿里的多版本通义千问Qwen大模型的快速应用与部署。阿里云开源了Qwen系列模型,即Qwen-7B和Qwen-14B,以及Qwen的聊天模型,即Qwen-7B-Chat和Qwen-14B-Chat。通义千问模型针对多达 3 万亿个 token 的多语言数据进行了…

LLM之Prompt(二):清华提出Prompt 对齐优化技术BPO

论文题目:《Black-Box Prompt Optimization: Aligning Large Language Models without Model Training》 论文链接:https://arxiv.org/abs/2311.04155 github地址:https://github.com/thu-coai/BPO BPO背景介绍 最近,大型语言模…

米哈游大数据云原生实践

云布道师 近年来,容器、微服务、Kubernetes 等各项云原生技术的日渐成熟,越来越多的公司开始选择拥抱云原生,并将企业应用部署运行在云原生之上。随着米哈游业务的高速发展,大数据离线数据存储量和计算任务量增长迅速&#xff0c…

中大型企业网搭建(毕设类型)

毕业设计类别 某大学网络规划与部署 目录 某大学网络规划与部署 第一章项目概述 1.1 项目背景 1.2 网络需求分析 第二章网络总体设计方案 2.1 网络整体架构 2.2 网络设计思路 第三章 网络技术应用 3.1 DHCP 3.2 MSTP 3.3 VRRP 3.4 OSPF 3.5 VLAN 3.6 NAT 3.7 WLAN 3…

78基于matlab的BiLSTM分类算法,输出迭代曲线,测试集和训练集分类结果和混淆矩阵

基于matlab的BiLSTM分类算法,输出迭代曲线,测试集和训练集分类结果和混淆矩阵,程序有详细注释,数据可更换自己的,程序已调通,可直接运行。

全面解析IEC 60364三种接地系统的概念、特点及应用

根据IEC 60364规定的各种保护方式、术语概念,低压配电系统按接地方式的不同分为三类,即 TT 、 TN 和 IT 系统。 1.TT系统TT grounding system TT供电系统:是指将电气设备的金属外壳直接接地的保护系统,称为保护接地系统&#xff…

C#WPF用户控件及自定义控件实例

本文演示C#WPF自定义控件实例 用户控件(UserControl)和自定义控件(CustomControl)都是对UI控件的一种封装方式,目的都是实现封装后控件的重用。 只不过各自封装的实现方式和使用的场景上存在差异。 1 基于UserControl 创建 创建控件最简单一个方法就是基于UserControl …

如何使用API接口对接淘宝获取店铺销量排序,店铺名称等参数

要接入淘宝官方开放平台API接口获取店铺销量排序,店铺名称等参数,需要按照以下步骤进行操作: 找到可用的API接口:首先,需要找到支持查询店铺信息的API接口。可以在电商数据平台的开放平台上查找相应的API接口。注册并…

YOLOv8更换骨干网络HorNet:递归门控卷积的高效高阶空间交互——涨点神器!

🗝️YOLOv8实战宝典--星级指南:从入门到精通,您不可错过的技巧   -- 聚焦于YOLO的 最新版本, 对颈部网络改进、添加局部注意力、增加检测头部,实测涨点 💡 深入浅出YOLOv8:我的专业笔记与技术总结   -- YOLOv8轻松上手, 适用技术小白,文章代码齐全,仅需 …

【深度学习实验】注意力机制(四):点积注意力与缩放点积注意力之比较

文章目录 一、实验介绍二、实验环境1. 配置虚拟环境2. 库版本介绍 三、实验内容0. 理论介绍a. 认知神经学中的注意力b. 注意力机制 1. 注意力权重矩阵可视化(矩阵热图)2. 掩码Softmax 操作3. 打分函数——加性注意力模型3. 打分函数——点积注意力与缩放…

用户增长常见分析模型

一、用户增长是什么 用户增长基本上会涉及生意场上的各行各业,你开个店面希望有更多的客户光顾,你做了个APP希望有更多的用户经常使用,你搭建了个电商平台希望有更多的人下单买东西。 用户增长,即以提升用户LTV为目的&#xff08…

Self-Supervised Exploration via Disagreement论文笔记

通过分歧进行自我监督探索 0、问题 使用可微的ri直接去更新动作策略的参数的,那是不是就不需要去计算价值函数或者critic网络了? 1、Motivation 高效的探索是RL中长期存在的问题。以前的大多数方式要么陷入具有随机动力学的环境,要么效率…

应用在金银精炼控制系统中的Modbus转Profinet网关案例

应用在金银精炼控制系统中的Modbus转Profinet网关案例 Modbus转Profinet网关(XD-MDPN100)能够支持多种通信协议和接口,满足不同设备和系统的需求。在金银精炼控制系统中使用,通过控制PID阀门的大小,将1200plc与PID控制…

Git 远程仓库(Github)

目录 添加远程库 查看当前的远程库 提取远程仓库 推送到远程仓库 删除远程仓库 Git 并不像 SVN 那样有个中心服务器。 目前我们使用到的 Git 命令都是在本地执行,如果你想通过 Git 分享你的代码或者与其他开发人员合作。 你就需要将数据放到一台其他开发人员…

【paddlepaddle】

安装paddlepaddle 报错 ImportError: /home/ubuntu/miniconda3/envs/paddle_gan/bin/../lib/libstdc.so.6: version GLIBCXX_3.4.30 not found (required by /home/ubuntu/miniconda3/envs/paddle_gan/lib/python3.8/site-packages/paddle/fluid/libpaddle.so) 替换 /home/ubu…

【python】Python生成GIF动图,多张图片转动态图,pillow

pip install pillow 示例代码: from PIL import Image, ImageSequence# 图片文件名列表 image_files [car.png, detected_map.png, base64_image_out.png]# 打开图片 images [Image.open(filename) for filename in image_files]# 设置输出 GIF 文件名 output_g…

GAMES101—Lec 05~06:光栅化

目录 概念回顾(个人理解)光栅化1.采样2.采样出现的问题:走样 反走样 概念回顾(个人理解) 屏幕:在图形学中,我们认为屏幕是一个二维数组,数组里的每一个元素为一个二维像素。 光栅化…

【Operating Systems:Three Easy Pieces 操作系统导论 】第28章 插叙:线程 API

【Operating Systems:Three Easy Pieces 操作系统导论 】 第28章 插叙&#xff1a;线程 API pthread 库介绍 线程创建 #include <pthread.h> // 头文件 int pthread_create(pthread_t * thread,const pthread_attr_t * attr,void * (*start_routine)(void*),void *…

【数据结构(四)】栈(1)

文章目录 1. 关于栈的一个实际应用2. 栈的介绍3. 栈的应用场景4. 栈的简单应用4.1. 思路分析4.2. 代码实现 5. 栈的进阶应用(实现综合计算器)5.1. 栈实现一位数计算(中缀表达式)5.1.1. 思路分析5.1.2. 代码实现 5.2. 栈实现多位数计算(中缀表达式)5.2.1. 解决思路5.2.2. 代码实…

强化学习笔记

这里写自定义目录标题 参考资料基础知识16.3 有模型学习16.3.1 策略评估16.3.2 策略改进16.3.3 策略迭代16.3.3 值迭代 16.4 免模型学习16.4.1 蒙特卡罗强化学习16.4.2 时序差分学习Sarsa算法&#xff1a;同策略算法&#xff08;on-policy&#xff09;&#xff1a;行为策略是目…