@investoday/investoday-api 1.9.2 → 1.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/data/openapi.json +1054 -0
- package/data/tree.json +102 -1
- package/package.json +1 -1
package/data/openapi.json
CHANGED
|
@@ -63003,6 +63003,1060 @@
|
|
|
63003
63003
|
"x-apikey-supported": [
|
|
63004
63004
|
"resource"
|
|
63005
63005
|
]
|
|
63006
|
+
},
|
|
63007
|
+
"/stock/dcf-result": {
|
|
63008
|
+
"post": {
|
|
63009
|
+
"tags": [
|
|
63010
|
+
"DCF估值模型结果"
|
|
63011
|
+
],
|
|
63012
|
+
"summary": "DCF估值模型结果",
|
|
63013
|
+
"description": "支持通过单只股票代码、多只股票代码列表,结合基准报告截止日期范围(格式yyyy-MM-dd)及分页参数,查询股票的DCF估值模型结果,包含发布日期、股票代码与名称、基准报告截止日期、场景类型、预测年数、预测期FCF现值合计、永续增长率、终值、终值现值、企业价值EV、加权平均资本成本WACC等核心数据,可用于股票估值分析、企业价值研究等投研场景。",
|
|
63014
|
+
"operationId": "list_stock_dcf_result",
|
|
63015
|
+
"requestBody": {
|
|
63016
|
+
"description": "支持通过单只股票代码、多只股票代码列表,结合基准报告截止日期范围(格式yyyy-MM-dd)及分页参数,查询股票的DCF估值模型结果,包含发布日期、股票代码与名称、基准报告截止日期、场景类型、预测年数、预测期FCF现值合计、永续增长率、终值、终值现值、企业价值EV、加权平均资本成本WACC等核心数据,可用于股票估值分析、企业价值研究等投研场景。",
|
|
63017
|
+
"content": {
|
|
63018
|
+
"application/json": {
|
|
63019
|
+
"schema": {
|
|
63020
|
+
"type": "object",
|
|
63021
|
+
"properties": {
|
|
63022
|
+
"stockCode": {
|
|
63023
|
+
"type": "string",
|
|
63024
|
+
"description": "股票代码【与stockCodes组成多选一参数,必须且只能传递其中一个】",
|
|
63025
|
+
"example": "002594"
|
|
63026
|
+
},
|
|
63027
|
+
"stockCodes": {
|
|
63028
|
+
"type": "array",
|
|
63029
|
+
"description": "股票代码列表【与stockCode组成多选一参数,必须且只能传递其中一个】",
|
|
63030
|
+
"example": [
|
|
63031
|
+
"000001",
|
|
63032
|
+
"600519"
|
|
63033
|
+
],
|
|
63034
|
+
"items": {
|
|
63035
|
+
"type": "string"
|
|
63036
|
+
}
|
|
63037
|
+
},
|
|
63038
|
+
"beginDate": {
|
|
63039
|
+
"type": "string",
|
|
63040
|
+
"description": "开始日期(格式yyyy-MM-dd)。\n最小值:2020-01-01;",
|
|
63041
|
+
"example": "2020-01-01"
|
|
63042
|
+
},
|
|
63043
|
+
"endDate": {
|
|
63044
|
+
"type": "string",
|
|
63045
|
+
"description": "结束日期(格式yyyy-MM-dd)",
|
|
63046
|
+
"example": ""
|
|
63047
|
+
},
|
|
63048
|
+
"pageNum": {
|
|
63049
|
+
"type": "integer",
|
|
63050
|
+
"format": "int32",
|
|
63051
|
+
"description": "页码。\n最小值:1;",
|
|
63052
|
+
"example": 1
|
|
63053
|
+
},
|
|
63054
|
+
"pageSize": {
|
|
63055
|
+
"type": "integer",
|
|
63056
|
+
"format": "int32",
|
|
63057
|
+
"description": "页长。\n最小值:1;\n最大值:500;",
|
|
63058
|
+
"example": 10
|
|
63059
|
+
}
|
|
63060
|
+
}
|
|
63061
|
+
}
|
|
63062
|
+
}
|
|
63063
|
+
},
|
|
63064
|
+
"required": true
|
|
63065
|
+
},
|
|
63066
|
+
"responses": {
|
|
63067
|
+
"200": {
|
|
63068
|
+
"description": "成功响应",
|
|
63069
|
+
"content": {
|
|
63070
|
+
"application/json": {
|
|
63071
|
+
"schema": {
|
|
63072
|
+
"type": "object",
|
|
63073
|
+
"properties": {
|
|
63074
|
+
"publishDate": {
|
|
63075
|
+
"type": "string",
|
|
63076
|
+
"description": "发布日期"
|
|
63077
|
+
},
|
|
63078
|
+
"stockCode": {
|
|
63079
|
+
"type": "string",
|
|
63080
|
+
"description": "股票代码"
|
|
63081
|
+
},
|
|
63082
|
+
"stockName": {
|
|
63083
|
+
"type": "string",
|
|
63084
|
+
"description": "股票名称"
|
|
63085
|
+
},
|
|
63086
|
+
"reportPeriodEnd": {
|
|
63087
|
+
"type": "string",
|
|
63088
|
+
"description": "基准报告截止日期",
|
|
63089
|
+
"example": "2024-12-31 00:00:00"
|
|
63090
|
+
},
|
|
63091
|
+
"scenarioType": {
|
|
63092
|
+
"type": "integer",
|
|
63093
|
+
"format": "int32",
|
|
63094
|
+
"allOf": [
|
|
63095
|
+
{
|
|
63096
|
+
"type": "integer",
|
|
63097
|
+
"format": "int32",
|
|
63098
|
+
"description": "1、乐观情景;2、中立情景;3、悲观情景;\n",
|
|
63099
|
+
"enum": [
|
|
63100
|
+
"1、乐观情景;2、中立情景;3、悲观情景;"
|
|
63101
|
+
]
|
|
63102
|
+
}
|
|
63103
|
+
],
|
|
63104
|
+
"description": "情景类型",
|
|
63105
|
+
"example": 1
|
|
63106
|
+
},
|
|
63107
|
+
"forecastYears": {
|
|
63108
|
+
"type": "integer",
|
|
63109
|
+
"format": "int32",
|
|
63110
|
+
"description": "预测年份数",
|
|
63111
|
+
"example": 5
|
|
63112
|
+
},
|
|
63113
|
+
"sumFcfPv": {
|
|
63114
|
+
"type": "number",
|
|
63115
|
+
"description": "预测期FCF现值合计",
|
|
63116
|
+
"example": 123456.789
|
|
63117
|
+
},
|
|
63118
|
+
"terminalGrowthRate": {
|
|
63119
|
+
"type": "number",
|
|
63120
|
+
"description": "永续增长率",
|
|
63121
|
+
"example": 0.03
|
|
63122
|
+
},
|
|
63123
|
+
"terminalValue": {
|
|
63124
|
+
"type": "number",
|
|
63125
|
+
"description": "终值",
|
|
63126
|
+
"example": 123456.789
|
|
63127
|
+
},
|
|
63128
|
+
"terminalValuePv": {
|
|
63129
|
+
"type": "number",
|
|
63130
|
+
"description": "终值现值",
|
|
63131
|
+
"example": 123456.789
|
|
63132
|
+
},
|
|
63133
|
+
"enterpriseValueEv": {
|
|
63134
|
+
"type": "number",
|
|
63135
|
+
"description": "企业价值EV",
|
|
63136
|
+
"example": 123456.789
|
|
63137
|
+
},
|
|
63138
|
+
"wacc": {
|
|
63139
|
+
"type": "number",
|
|
63140
|
+
"description": "加权平均资本成本",
|
|
63141
|
+
"example": 0.085
|
|
63142
|
+
}
|
|
63143
|
+
}
|
|
63144
|
+
}
|
|
63145
|
+
}
|
|
63146
|
+
}
|
|
63147
|
+
},
|
|
63148
|
+
"400": {
|
|
63149
|
+
"description": "无效请求"
|
|
63150
|
+
},
|
|
63151
|
+
"500": {
|
|
63152
|
+
"description": "服务器内部错误"
|
|
63153
|
+
}
|
|
63154
|
+
},
|
|
63155
|
+
"security": [
|
|
63156
|
+
{
|
|
63157
|
+
"ApiKeyAuth": []
|
|
63158
|
+
}
|
|
63159
|
+
]
|
|
63160
|
+
},
|
|
63161
|
+
"x-apikey-supported": [
|
|
63162
|
+
"resource"
|
|
63163
|
+
]
|
|
63164
|
+
},
|
|
63165
|
+
"/stock/unadj-min-quotes": {
|
|
63166
|
+
"post": {
|
|
63167
|
+
"tags": [
|
|
63168
|
+
"股票分钟未复权日行情"
|
|
63169
|
+
],
|
|
63170
|
+
"summary": "股票分钟未复权日行情",
|
|
63171
|
+
"description": "使用股票代码和时间范围查询股票的未复权行情数据,包括股票基本信息、行情时间、前收盘价、开盘价、最高价、最低价、最新价、成交量和成交金额等核心数据,适用于历史行情分析和数据回溯。",
|
|
63172
|
+
"operationId": "list_stk_unadj_min_quotes",
|
|
63173
|
+
"requestBody": {
|
|
63174
|
+
"description": "使用股票代码和时间范围查询股票的未复权行情数据,包括股票基本信息、行情时间、前收盘价、开盘价、最高价、最低价、最新价、成交量和成交金额等核心数据,适用于历史行情分析和数据回溯。",
|
|
63175
|
+
"content": {
|
|
63176
|
+
"application/json": {
|
|
63177
|
+
"schema": {
|
|
63178
|
+
"type": "object",
|
|
63179
|
+
"properties": {
|
|
63180
|
+
"stockCode": {
|
|
63181
|
+
"type": "string",
|
|
63182
|
+
"description": "股票代码【与stockCodes组成多选一参数,必须且只能传递其中一个】",
|
|
63183
|
+
"example": "002594"
|
|
63184
|
+
},
|
|
63185
|
+
"stockCodes": {
|
|
63186
|
+
"type": "array",
|
|
63187
|
+
"description": "股票代码列表【与stockCode组成多选一参数,必须且只能传递其中一个】",
|
|
63188
|
+
"example": [
|
|
63189
|
+
"000001",
|
|
63190
|
+
"600519"
|
|
63191
|
+
],
|
|
63192
|
+
"items": {
|
|
63193
|
+
"type": "string"
|
|
63194
|
+
}
|
|
63195
|
+
},
|
|
63196
|
+
"freq": {
|
|
63197
|
+
"type": "integer",
|
|
63198
|
+
"format": "int32",
|
|
63199
|
+
"allOf": [
|
|
63200
|
+
{
|
|
63201
|
+
"type": "integer",
|
|
63202
|
+
"format": "int32",
|
|
63203
|
+
"description": "1代表1分钟;\n5代表5分钟;\n30代表30分钟;\n60代表60分钟;\n120代表120分钟",
|
|
63204
|
+
"enum": [
|
|
63205
|
+
1,
|
|
63206
|
+
5,
|
|
63207
|
+
30,
|
|
63208
|
+
60,
|
|
63209
|
+
120
|
|
63210
|
+
]
|
|
63211
|
+
}
|
|
63212
|
+
],
|
|
63213
|
+
"description": "频率",
|
|
63214
|
+
"example": 1
|
|
63215
|
+
},
|
|
63216
|
+
"beginDate": {
|
|
63217
|
+
"type": "string",
|
|
63218
|
+
"description": "开始日期(格式yyyy-MM-dd)。\n最小值:2020-01-01;",
|
|
63219
|
+
"example": "2020-01-01"
|
|
63220
|
+
},
|
|
63221
|
+
"endDate": {
|
|
63222
|
+
"type": "string",
|
|
63223
|
+
"description": "结束日期(格式yyyy-MM-dd)",
|
|
63224
|
+
"example": "2025-01-01"
|
|
63225
|
+
},
|
|
63226
|
+
"pageNum": {
|
|
63227
|
+
"type": "integer",
|
|
63228
|
+
"format": "int32",
|
|
63229
|
+
"description": "页码。\n最小值:1;",
|
|
63230
|
+
"example": 1
|
|
63231
|
+
},
|
|
63232
|
+
"pageSize": {
|
|
63233
|
+
"type": "integer",
|
|
63234
|
+
"format": "int32",
|
|
63235
|
+
"description": "页长。\n最小值:1;\n最大值:500;",
|
|
63236
|
+
"example": 10
|
|
63237
|
+
}
|
|
63238
|
+
},
|
|
63239
|
+
"required": [
|
|
63240
|
+
"freq"
|
|
63241
|
+
]
|
|
63242
|
+
}
|
|
63243
|
+
}
|
|
63244
|
+
},
|
|
63245
|
+
"required": true
|
|
63246
|
+
},
|
|
63247
|
+
"responses": {
|
|
63248
|
+
"200": {
|
|
63249
|
+
"description": "成功响应",
|
|
63250
|
+
"content": {
|
|
63251
|
+
"application/json": {
|
|
63252
|
+
"schema": {
|
|
63253
|
+
"type": "object",
|
|
63254
|
+
"properties": {
|
|
63255
|
+
"date": {
|
|
63256
|
+
"type": "string",
|
|
63257
|
+
"description": "交易日期",
|
|
63258
|
+
"example": "2023-10-26"
|
|
63259
|
+
},
|
|
63260
|
+
"stockCode": {
|
|
63261
|
+
"type": "string",
|
|
63262
|
+
"description": "股票代码",
|
|
63263
|
+
"example": "000001"
|
|
63264
|
+
},
|
|
63265
|
+
"stockName": {
|
|
63266
|
+
"type": "string",
|
|
63267
|
+
"description": "股票名称",
|
|
63268
|
+
"example": "贵州茅台"
|
|
63269
|
+
},
|
|
63270
|
+
"openPrice": {
|
|
63271
|
+
"type": "number",
|
|
63272
|
+
"description": "开盘价",
|
|
63273
|
+
"example": 12.75
|
|
63274
|
+
},
|
|
63275
|
+
"highPrice": {
|
|
63276
|
+
"type": "number",
|
|
63277
|
+
"description": "最高价",
|
|
63278
|
+
"example": 128.75
|
|
63279
|
+
},
|
|
63280
|
+
"lowPrice": {
|
|
63281
|
+
"type": "number",
|
|
63282
|
+
"description": "最低价",
|
|
63283
|
+
"example": 12.75
|
|
63284
|
+
},
|
|
63285
|
+
"closePrice": {
|
|
63286
|
+
"type": "number",
|
|
63287
|
+
"description": "收盘价",
|
|
63288
|
+
"example": 15.75
|
|
63289
|
+
},
|
|
63290
|
+
"volume": {
|
|
63291
|
+
"type": "number",
|
|
63292
|
+
"description": "成交量(股)",
|
|
63293
|
+
"example": 12345.67
|
|
63294
|
+
},
|
|
63295
|
+
"amount": {
|
|
63296
|
+
"type": "number",
|
|
63297
|
+
"description": "成交金额(元)",
|
|
63298
|
+
"example": 123456.78
|
|
63299
|
+
},
|
|
63300
|
+
"changePct": {
|
|
63301
|
+
"type": "number",
|
|
63302
|
+
"description": "涨跌幅",
|
|
63303
|
+
"example": 0.025
|
|
63304
|
+
}
|
|
63305
|
+
}
|
|
63306
|
+
}
|
|
63307
|
+
}
|
|
63308
|
+
}
|
|
63309
|
+
},
|
|
63310
|
+
"400": {
|
|
63311
|
+
"description": "无效请求"
|
|
63312
|
+
},
|
|
63313
|
+
"500": {
|
|
63314
|
+
"description": "服务器内部错误"
|
|
63315
|
+
}
|
|
63316
|
+
},
|
|
63317
|
+
"security": [
|
|
63318
|
+
{
|
|
63319
|
+
"ApiKeyAuth": []
|
|
63320
|
+
}
|
|
63321
|
+
]
|
|
63322
|
+
},
|
|
63323
|
+
"x-apikey-supported": [
|
|
63324
|
+
"resource"
|
|
63325
|
+
]
|
|
63326
|
+
},
|
|
63327
|
+
"/fund/str-trend-ind": {
|
|
63328
|
+
"post": {
|
|
63329
|
+
"tags": [
|
|
63330
|
+
"基金强弱与趋向指标"
|
|
63331
|
+
],
|
|
63332
|
+
"summary": "基金强弱与趋向指标",
|
|
63333
|
+
"description": "支持通过单个基金代码或批量基金代码数组,结合指定的时间范围(开始日期、结束日期格式为yyyy-MM-dd),并可通过页码、页长分页,查询基金的强弱与趋势技术指标数据,包含交易日期(格式yyyy-MM-dd HH:mm:ss)、基金代码及名称,以及5日、10日、20日、60日、120日、250日移动平均线,MACD、DMI、DMA、MTM、TRIX等多类技术指标数值,可用于基金趋势判断、强弱分析等投资研究场景。",
|
|
63334
|
+
"operationId": "list_fund_strength_trend_indicators",
|
|
63335
|
+
"requestBody": {
|
|
63336
|
+
"description": "支持通过单个基金代码或批量基金代码数组,结合指定的时间范围(开始日期、结束日期格式为yyyy-MM-dd),并可通过页码、页长分页,查询基金的强弱与趋势技术指标数据,包含交易日期(格式yyyy-MM-dd HH:mm:ss)、基金代码及名称,以及5日、10日、20日、60日、120日、250日移动平均线,MACD、DMI、DMA、MTM、TRIX等多类技术指标数值,可用于基金趋势判断、强弱分析等投资研究场景。",
|
|
63337
|
+
"content": {
|
|
63338
|
+
"application/json": {
|
|
63339
|
+
"schema": {
|
|
63340
|
+
"type": "object",
|
|
63341
|
+
"properties": {
|
|
63342
|
+
"fundCode": {
|
|
63343
|
+
"type": "string",
|
|
63344
|
+
"description": "基金代码【与fundCodes组成多选一参数,必须且只能传递其中一个】",
|
|
63345
|
+
"example": "000001"
|
|
63346
|
+
},
|
|
63347
|
+
"fundCodes": {
|
|
63348
|
+
"type": "array",
|
|
63349
|
+
"description": "基金代码列表【与fundCode组成多选一参数,必须且只能传递其中一个】",
|
|
63350
|
+
"example": [
|
|
63351
|
+
"000001",
|
|
63352
|
+
"600519"
|
|
63353
|
+
],
|
|
63354
|
+
"items": {
|
|
63355
|
+
"type": "string"
|
|
63356
|
+
}
|
|
63357
|
+
},
|
|
63358
|
+
"beginDate": {
|
|
63359
|
+
"type": "string",
|
|
63360
|
+
"description": "开始日期(格式yyyy-MM-dd)。\n最小值:2020-01-01;",
|
|
63361
|
+
"example": "2020-01-01"
|
|
63362
|
+
},
|
|
63363
|
+
"endDate": {
|
|
63364
|
+
"type": "string",
|
|
63365
|
+
"description": "结束日期(格式yyyy-MM-dd)",
|
|
63366
|
+
"example": "2025-01-01"
|
|
63367
|
+
},
|
|
63368
|
+
"pageNum": {
|
|
63369
|
+
"type": "integer",
|
|
63370
|
+
"format": "int32",
|
|
63371
|
+
"description": "页码。\n最小值:1;",
|
|
63372
|
+
"example": 1
|
|
63373
|
+
},
|
|
63374
|
+
"pageSize": {
|
|
63375
|
+
"type": "integer",
|
|
63376
|
+
"format": "int32",
|
|
63377
|
+
"description": "页长。\n最小值:1;\n最大值:500;",
|
|
63378
|
+
"example": 10
|
|
63379
|
+
}
|
|
63380
|
+
}
|
|
63381
|
+
}
|
|
63382
|
+
}
|
|
63383
|
+
},
|
|
63384
|
+
"required": true
|
|
63385
|
+
},
|
|
63386
|
+
"responses": {
|
|
63387
|
+
"200": {
|
|
63388
|
+
"description": "成功响应",
|
|
63389
|
+
"content": {
|
|
63390
|
+
"application/json": {
|
|
63391
|
+
"schema": {
|
|
63392
|
+
"type": "object",
|
|
63393
|
+
"properties": {
|
|
63394
|
+
"date": {
|
|
63395
|
+
"type": "string",
|
|
63396
|
+
"description": "交易日期",
|
|
63397
|
+
"example": "2014-01-02 00:00:00"
|
|
63398
|
+
},
|
|
63399
|
+
"fundCode": {
|
|
63400
|
+
"type": "string",
|
|
63401
|
+
"description": "基金代码",
|
|
63402
|
+
"example": "600716"
|
|
63403
|
+
},
|
|
63404
|
+
"fundName": {
|
|
63405
|
+
"type": "string",
|
|
63406
|
+
"description": "基金名称",
|
|
63407
|
+
"example": "凤凰股份"
|
|
63408
|
+
},
|
|
63409
|
+
"ma5d": {
|
|
63410
|
+
"type": "number",
|
|
63411
|
+
"description": "5日均价",
|
|
63412
|
+
"example": 15.78
|
|
63413
|
+
},
|
|
63414
|
+
"ma10d": {
|
|
63415
|
+
"type": "number",
|
|
63416
|
+
"description": "10日均价",
|
|
63417
|
+
"example": 15.78
|
|
63418
|
+
},
|
|
63419
|
+
"ma20d": {
|
|
63420
|
+
"type": "number",
|
|
63421
|
+
"description": "20日均价",
|
|
63422
|
+
"example": 15.78
|
|
63423
|
+
},
|
|
63424
|
+
"ma60d": {
|
|
63425
|
+
"type": "number",
|
|
63426
|
+
"description": "60日均价",
|
|
63427
|
+
"example": 12.45
|
|
63428
|
+
},
|
|
63429
|
+
"ma120d": {
|
|
63430
|
+
"type": "number",
|
|
63431
|
+
"description": "120日均价",
|
|
63432
|
+
"example": 15.78
|
|
63433
|
+
},
|
|
63434
|
+
"ma250d": {
|
|
63435
|
+
"type": "number",
|
|
63436
|
+
"description": "250日均价",
|
|
63437
|
+
"example": 15.78
|
|
63438
|
+
},
|
|
63439
|
+
"macdDiff": {
|
|
63440
|
+
"type": "number",
|
|
63441
|
+
"description": "MACD差离值",
|
|
63442
|
+
"example": 0
|
|
63443
|
+
},
|
|
63444
|
+
"macdDea": {
|
|
63445
|
+
"type": "number",
|
|
63446
|
+
"description": "DIF线移动平均线",
|
|
63447
|
+
"example": 0
|
|
63448
|
+
},
|
|
63449
|
+
"macd": {
|
|
63450
|
+
"type": "number",
|
|
63451
|
+
"description": "MACD值",
|
|
63452
|
+
"example": 0
|
|
63453
|
+
},
|
|
63454
|
+
"dmiPdi": {
|
|
63455
|
+
"type": "number",
|
|
63456
|
+
"description": "DMI趋向指标",
|
|
63457
|
+
"example": 0
|
|
63458
|
+
},
|
|
63459
|
+
"dmiMdi": {
|
|
63460
|
+
"type": "number",
|
|
63461
|
+
"description": "下降方向线",
|
|
63462
|
+
"example": 0
|
|
63463
|
+
},
|
|
63464
|
+
"dmiAdx": {
|
|
63465
|
+
"type": "number",
|
|
63466
|
+
"description": "平均趋向指数",
|
|
63467
|
+
"example": 0
|
|
63468
|
+
},
|
|
63469
|
+
"dmiAdxr": {
|
|
63470
|
+
"type": "number",
|
|
63471
|
+
"description": "平均趋向指数评估值",
|
|
63472
|
+
"example": 0
|
|
63473
|
+
},
|
|
63474
|
+
"dmaDma": {
|
|
63475
|
+
"type": "number",
|
|
63476
|
+
"description": "DMA指标",
|
|
63477
|
+
"example": 3.75
|
|
63478
|
+
},
|
|
63479
|
+
"dmaAma": {
|
|
63480
|
+
"type": "number",
|
|
63481
|
+
"description": "平行线差指标",
|
|
63482
|
+
"example": -0.015
|
|
63483
|
+
},
|
|
63484
|
+
"mtmMtm": {
|
|
63485
|
+
"type": "number",
|
|
63486
|
+
"description": "MTM动量线",
|
|
63487
|
+
"example": 0
|
|
63488
|
+
},
|
|
63489
|
+
"trixTrix": {
|
|
63490
|
+
"type": "number",
|
|
63491
|
+
"description": "三重指数平滑平均线 ",
|
|
63492
|
+
"example": 0
|
|
63493
|
+
},
|
|
63494
|
+
"trixTrma": {
|
|
63495
|
+
"type": "number",
|
|
63496
|
+
"description": "三重指数平滑平均线的移动平均线",
|
|
63497
|
+
"example": 0.015
|
|
63498
|
+
}
|
|
63499
|
+
}
|
|
63500
|
+
}
|
|
63501
|
+
}
|
|
63502
|
+
}
|
|
63503
|
+
},
|
|
63504
|
+
"400": {
|
|
63505
|
+
"description": "无效请求"
|
|
63506
|
+
},
|
|
63507
|
+
"500": {
|
|
63508
|
+
"description": "服务器内部错误"
|
|
63509
|
+
}
|
|
63510
|
+
},
|
|
63511
|
+
"security": [
|
|
63512
|
+
{
|
|
63513
|
+
"ApiKeyAuth": []
|
|
63514
|
+
}
|
|
63515
|
+
]
|
|
63516
|
+
},
|
|
63517
|
+
"x-apikey-supported": [
|
|
63518
|
+
"resource"
|
|
63519
|
+
]
|
|
63520
|
+
},
|
|
63521
|
+
"/fund/osc-indicators": {
|
|
63522
|
+
"post": {
|
|
63523
|
+
"tags": [
|
|
63524
|
+
"基金摆动与超买超卖指标"
|
|
63525
|
+
],
|
|
63526
|
+
"summary": "基金摆动与超买超卖指标",
|
|
63527
|
+
"description": "支持通过单个基金代码或批量基金代码列表,结合指定的时间范围(开始日期、结束日期格式均为yyyy-MM-dd),查询ETF的振荡与超买超卖相关技术指标数据,包括交易日期(格式yyyy-MM-dd HH:mm:ss)、基金代码、基金名称,以及RC变化率、ATR真实波幅、CVLT蔡金波动指标、ADTM动态买卖气指标、KDJ指标(K/D/J线)、5日和14日RSI相对强弱指标、不同周期的乖离率等核心数据,还可通过页码和页长控制返回结果的分页,适用于ETF的技术面分析、投资决策辅助等场景。",
|
|
63528
|
+
"operationId": "list_fund_oscillator_indicators",
|
|
63529
|
+
"requestBody": {
|
|
63530
|
+
"description": "支持通过单个基金代码或批量基金代码列表,结合指定的时间范围(开始日期、结束日期格式均为yyyy-MM-dd),查询ETF的振荡与超买超卖相关技术指标数据,包括交易日期(格式yyyy-MM-dd HH:mm:ss)、基金代码、基金名称,以及RC变化率、ATR真实波幅、CVLT蔡金波动指标、ADTM动态买卖气指标、KDJ指标(K/D/J线)、5日和14日RSI相对强弱指标、不同周期的乖离率等核心数据,还可通过页码和页长控制返回结果的分页,适用于ETF的技术面分析、投资决策辅助等场景。",
|
|
63531
|
+
"content": {
|
|
63532
|
+
"application/json": {
|
|
63533
|
+
"schema": {
|
|
63534
|
+
"type": "object",
|
|
63535
|
+
"properties": {
|
|
63536
|
+
"fundCode": {
|
|
63537
|
+
"type": "string",
|
|
63538
|
+
"description": "基金代码【与fundCodes组成多选一参数,必须且只能传递其中一个】",
|
|
63539
|
+
"example": "000001"
|
|
63540
|
+
},
|
|
63541
|
+
"fundCodes": {
|
|
63542
|
+
"type": "array",
|
|
63543
|
+
"description": "基金代码列表【与fundCode组成多选一参数,必须且只能传递其中一个】",
|
|
63544
|
+
"example": [
|
|
63545
|
+
"000001",
|
|
63546
|
+
"600519"
|
|
63547
|
+
],
|
|
63548
|
+
"items": {
|
|
63549
|
+
"type": "string"
|
|
63550
|
+
}
|
|
63551
|
+
},
|
|
63552
|
+
"beginDate": {
|
|
63553
|
+
"type": "string",
|
|
63554
|
+
"description": "开始日期(格式yyyy-MM-dd)。\n最小值:2020-01-01;",
|
|
63555
|
+
"example": "2020-01-01"
|
|
63556
|
+
},
|
|
63557
|
+
"endDate": {
|
|
63558
|
+
"type": "string",
|
|
63559
|
+
"description": "结束日期(格式yyyy-MM-dd)",
|
|
63560
|
+
"example": "2025-01-01"
|
|
63561
|
+
},
|
|
63562
|
+
"pageNum": {
|
|
63563
|
+
"type": "integer",
|
|
63564
|
+
"format": "int32",
|
|
63565
|
+
"description": "页码。\n最小值:1;",
|
|
63566
|
+
"example": 1
|
|
63567
|
+
},
|
|
63568
|
+
"pageSize": {
|
|
63569
|
+
"type": "integer",
|
|
63570
|
+
"format": "int32",
|
|
63571
|
+
"description": "页长。\n最小值:1;\n最大值:500;",
|
|
63572
|
+
"example": 10
|
|
63573
|
+
}
|
|
63574
|
+
}
|
|
63575
|
+
}
|
|
63576
|
+
}
|
|
63577
|
+
},
|
|
63578
|
+
"required": true
|
|
63579
|
+
},
|
|
63580
|
+
"responses": {
|
|
63581
|
+
"200": {
|
|
63582
|
+
"description": "成功响应",
|
|
63583
|
+
"content": {
|
|
63584
|
+
"application/json": {
|
|
63585
|
+
"schema": {
|
|
63586
|
+
"type": "object",
|
|
63587
|
+
"properties": {
|
|
63588
|
+
"date": {
|
|
63589
|
+
"type": "string",
|
|
63590
|
+
"description": "交易日期",
|
|
63591
|
+
"example": "2014-01-02 00:00:00"
|
|
63592
|
+
},
|
|
63593
|
+
"fundCode": {
|
|
63594
|
+
"type": "string",
|
|
63595
|
+
"description": "基金代码",
|
|
63596
|
+
"example": "000016"
|
|
63597
|
+
},
|
|
63598
|
+
"fundName": {
|
|
63599
|
+
"type": "string",
|
|
63600
|
+
"description": "基金名称",
|
|
63601
|
+
"example": "深康佳A"
|
|
63602
|
+
},
|
|
63603
|
+
"rateOfChange": {
|
|
63604
|
+
"type": "number",
|
|
63605
|
+
"description": "RC变化率指数",
|
|
63606
|
+
"example": 0
|
|
63607
|
+
},
|
|
63608
|
+
"atr": {
|
|
63609
|
+
"type": "number",
|
|
63610
|
+
"description": "ATR真实波幅ATR",
|
|
63611
|
+
"example": 3.75
|
|
63612
|
+
},
|
|
63613
|
+
"chaikinVolatility": {
|
|
63614
|
+
"type": "number",
|
|
63615
|
+
"description": "CVLT佳庆离散指标",
|
|
63616
|
+
"example": 0
|
|
63617
|
+
},
|
|
63618
|
+
"adtm": {
|
|
63619
|
+
"type": "number",
|
|
63620
|
+
"description": "ADTM动态买卖气指标",
|
|
63621
|
+
"example": -0.73
|
|
63622
|
+
},
|
|
63623
|
+
"kdjK": {
|
|
63624
|
+
"type": "number",
|
|
63625
|
+
"description": "KDJ随机指标快线K",
|
|
63626
|
+
"example": 50
|
|
63627
|
+
},
|
|
63628
|
+
"kdjD": {
|
|
63629
|
+
"type": "number",
|
|
63630
|
+
"description": "KDJ随机指标慢线D",
|
|
63631
|
+
"example": 50
|
|
63632
|
+
},
|
|
63633
|
+
"kdjJ": {
|
|
63634
|
+
"type": "number",
|
|
63635
|
+
"description": "KDJ随机指标方向敏感线J",
|
|
63636
|
+
"example": 60
|
|
63637
|
+
},
|
|
63638
|
+
"rsi5d": {
|
|
63639
|
+
"type": "number",
|
|
63640
|
+
"description": "5天相对强弱指数(rsi)",
|
|
63641
|
+
"example": 11.5945
|
|
63642
|
+
},
|
|
63643
|
+
"rsi14d": {
|
|
63644
|
+
"type": "number",
|
|
63645
|
+
"description": "14天相对强弱指数(rsi)",
|
|
63646
|
+
"example": 29.5792
|
|
63647
|
+
},
|
|
63648
|
+
"bias": {
|
|
63649
|
+
"type": "number",
|
|
63650
|
+
"description": " 乖离率",
|
|
63651
|
+
"example": -17.6218
|
|
63652
|
+
},
|
|
63653
|
+
"bias6d": {
|
|
63654
|
+
"type": "number",
|
|
63655
|
+
"description": "6天乖离率",
|
|
63656
|
+
"example": -17.6218
|
|
63657
|
+
},
|
|
63658
|
+
"bias24d": {
|
|
63659
|
+
"type": "number",
|
|
63660
|
+
"description": "24天乖离率",
|
|
63661
|
+
"example": -17.6218
|
|
63662
|
+
}
|
|
63663
|
+
}
|
|
63664
|
+
}
|
|
63665
|
+
}
|
|
63666
|
+
}
|
|
63667
|
+
},
|
|
63668
|
+
"400": {
|
|
63669
|
+
"description": "无效请求"
|
|
63670
|
+
},
|
|
63671
|
+
"500": {
|
|
63672
|
+
"description": "服务器内部错误"
|
|
63673
|
+
}
|
|
63674
|
+
},
|
|
63675
|
+
"security": [
|
|
63676
|
+
{
|
|
63677
|
+
"ApiKeyAuth": []
|
|
63678
|
+
}
|
|
63679
|
+
]
|
|
63680
|
+
},
|
|
63681
|
+
"x-apikey-supported": [
|
|
63682
|
+
"resource"
|
|
63683
|
+
]
|
|
63684
|
+
},
|
|
63685
|
+
"/fund/price-vol-ind": {
|
|
63686
|
+
"post": {
|
|
63687
|
+
"tags": [
|
|
63688
|
+
"基金量价与压力支撑指标"
|
|
63689
|
+
],
|
|
63690
|
+
"summary": "基金量价与压力支撑指标",
|
|
63691
|
+
"description": "支持通过单个基金代码或批量基金代码,结合可选的时间范围(开始日期、结束日期,格式为yyyy-MM-dd)、分页参数,查询ETF的量价与压力支撑类技术指标数据,包括交易日期(格式为yyyy-MM-dd HH:mm:ss)、基金代码、基金名称,以及布林带、多空布林线、ENV、MIKE等压力支撑指标,还有MFI、OBV、PVT、WVAD、AR、BR、PSY、CR等量价类指标,可用于ETF的技术面分析、走势研判及投资决策参考。",
|
|
63692
|
+
"operationId": "list_fund_price_volume_indicators",
|
|
63693
|
+
"requestBody": {
|
|
63694
|
+
"description": "支持通过单个基金代码或批量基金代码,结合可选的时间范围(开始日期、结束日期,格式为yyyy-MM-dd)、分页参数,查询ETF的量价与压力支撑类技术指标数据,包括交易日期(格式为yyyy-MM-dd HH:mm:ss)、基金代码、基金名称,以及布林带、多空布林线、ENV、MIKE等压力支撑指标,还有MFI、OBV、PVT、WVAD、AR、BR、PSY、CR等量价类指标,可用于ETF的技术面分析、走势研判及投资决策参考。",
|
|
63695
|
+
"content": {
|
|
63696
|
+
"application/json": {
|
|
63697
|
+
"schema": {
|
|
63698
|
+
"type": "object",
|
|
63699
|
+
"properties": {
|
|
63700
|
+
"fundCode": {
|
|
63701
|
+
"type": "string",
|
|
63702
|
+
"description": "基金代码【与fundCodes组成多选一参数,必须且只能传递其中一个】",
|
|
63703
|
+
"example": "000001"
|
|
63704
|
+
},
|
|
63705
|
+
"fundCodes": {
|
|
63706
|
+
"type": "array",
|
|
63707
|
+
"description": "基金代码列表【与fundCode组成多选一参数,必须且只能传递其中一个】",
|
|
63708
|
+
"example": [
|
|
63709
|
+
"000001",
|
|
63710
|
+
"600519"
|
|
63711
|
+
],
|
|
63712
|
+
"items": {
|
|
63713
|
+
"type": "string"
|
|
63714
|
+
}
|
|
63715
|
+
},
|
|
63716
|
+
"beginDate": {
|
|
63717
|
+
"type": "string",
|
|
63718
|
+
"description": "开始日期(格式yyyy-MM-dd)。\n最小值:2020-01-01;",
|
|
63719
|
+
"example": "2020-01-01"
|
|
63720
|
+
},
|
|
63721
|
+
"endDate": {
|
|
63722
|
+
"type": "string",
|
|
63723
|
+
"description": "结束日期(格式yyyy-MM-dd)",
|
|
63724
|
+
"example": "2025-01-01"
|
|
63725
|
+
},
|
|
63726
|
+
"pageNum": {
|
|
63727
|
+
"type": "integer",
|
|
63728
|
+
"format": "int32",
|
|
63729
|
+
"description": "页码。\n最小值:1;",
|
|
63730
|
+
"example": 1
|
|
63731
|
+
},
|
|
63732
|
+
"pageSize": {
|
|
63733
|
+
"type": "integer",
|
|
63734
|
+
"format": "int32",
|
|
63735
|
+
"description": "页长。\n最小值:1;\n最大值:500;",
|
|
63736
|
+
"example": 10
|
|
63737
|
+
}
|
|
63738
|
+
}
|
|
63739
|
+
}
|
|
63740
|
+
}
|
|
63741
|
+
},
|
|
63742
|
+
"required": true
|
|
63743
|
+
},
|
|
63744
|
+
"responses": {
|
|
63745
|
+
"200": {
|
|
63746
|
+
"description": "成功响应",
|
|
63747
|
+
"content": {
|
|
63748
|
+
"application/json": {
|
|
63749
|
+
"schema": {
|
|
63750
|
+
"type": "object",
|
|
63751
|
+
"properties": {
|
|
63752
|
+
"date": {
|
|
63753
|
+
"type": "string",
|
|
63754
|
+
"description": "交易日期",
|
|
63755
|
+
"example": "2014-01-02 00:00:00"
|
|
63756
|
+
},
|
|
63757
|
+
"fundCode": {
|
|
63758
|
+
"type": "string",
|
|
63759
|
+
"description": "基金代码",
|
|
63760
|
+
"example": "000004"
|
|
63761
|
+
},
|
|
63762
|
+
"fundName": {
|
|
63763
|
+
"type": "string",
|
|
63764
|
+
"description": "基金名称",
|
|
63765
|
+
"example": "*ST国华"
|
|
63766
|
+
},
|
|
63767
|
+
"bollMid": {
|
|
63768
|
+
"type": "number",
|
|
63769
|
+
"description": "布林带上轨",
|
|
63770
|
+
"example": 102.45
|
|
63771
|
+
},
|
|
63772
|
+
"bollUpper": {
|
|
63773
|
+
"type": "number",
|
|
63774
|
+
"description": "布林带上轨",
|
|
63775
|
+
"example": 20.75
|
|
63776
|
+
},
|
|
63777
|
+
"bollLower": {
|
|
63778
|
+
"type": "number",
|
|
63779
|
+
"description": "布林带下轨",
|
|
63780
|
+
"example": -12.34
|
|
63781
|
+
},
|
|
63782
|
+
"bbibollBbi": {
|
|
63783
|
+
"type": "number",
|
|
63784
|
+
"description": "多空布林线上轨",
|
|
63785
|
+
"example": 123.45
|
|
63786
|
+
},
|
|
63787
|
+
"bbibollUpper": {
|
|
63788
|
+
"type": "number",
|
|
63789
|
+
"description": "多空布林线上轨",
|
|
63790
|
+
"example": 12.85
|
|
63791
|
+
},
|
|
63792
|
+
"bbibollLower": {
|
|
63793
|
+
"type": "number",
|
|
63794
|
+
"description": "多空布林线下轨",
|
|
63795
|
+
"example": -12.35
|
|
63796
|
+
},
|
|
63797
|
+
"envUpper": {
|
|
63798
|
+
"type": "number",
|
|
63799
|
+
"description": "ENV指标下轨",
|
|
63800
|
+
"example": -0.15
|
|
63801
|
+
},
|
|
63802
|
+
"envLower": {
|
|
63803
|
+
"type": "number",
|
|
63804
|
+
"description": "ENV指标下轨",
|
|
63805
|
+
"example": -0.15
|
|
63806
|
+
},
|
|
63807
|
+
"mikeWr": {
|
|
63808
|
+
"type": "number",
|
|
63809
|
+
"description": "MIKE麦克指标-中级压力线",
|
|
63810
|
+
"example": 11.71
|
|
63811
|
+
},
|
|
63812
|
+
"mikeMr": {
|
|
63813
|
+
"type": "number",
|
|
63814
|
+
"description": "MIKE麦克指标-中级压力线",
|
|
63815
|
+
"example": 11.71
|
|
63816
|
+
},
|
|
63817
|
+
"mikeWs": {
|
|
63818
|
+
"type": "number",
|
|
63819
|
+
"description": "MIKE麦克指标-初级支撑线",
|
|
63820
|
+
"example": 11.71
|
|
63821
|
+
},
|
|
63822
|
+
"mikeSr": {
|
|
63823
|
+
"type": "number",
|
|
63824
|
+
"description": "MIKE麦克指标-强力压力线",
|
|
63825
|
+
"example": 11.71
|
|
63826
|
+
},
|
|
63827
|
+
"mikeMs": {
|
|
63828
|
+
"type": "number",
|
|
63829
|
+
"description": "MIKE麦克指标-中级支撑线",
|
|
63830
|
+
"example": 11.71
|
|
63831
|
+
},
|
|
63832
|
+
"mikeSs": {
|
|
63833
|
+
"type": "number",
|
|
63834
|
+
"description": "MIKE麦克指标-强力支撑线",
|
|
63835
|
+
"example": 11.71
|
|
63836
|
+
},
|
|
63837
|
+
"mfi": {
|
|
63838
|
+
"type": "number",
|
|
63839
|
+
"description": "资金流量指标MFI",
|
|
63840
|
+
"example": 50
|
|
63841
|
+
},
|
|
63842
|
+
"obv": {
|
|
63843
|
+
"type": "number",
|
|
63844
|
+
"description": "修正OBV能量潮",
|
|
63845
|
+
"example": 0
|
|
63846
|
+
},
|
|
63847
|
+
"pvt": {
|
|
63848
|
+
"type": "number",
|
|
63849
|
+
"description": "价量趋势指标PVT",
|
|
63850
|
+
"example": 0
|
|
63851
|
+
},
|
|
63852
|
+
"wvad": {
|
|
63853
|
+
"type": "number",
|
|
63854
|
+
"description": "威廉变异离散量WVAD",
|
|
63855
|
+
"example": -0.0345
|
|
63856
|
+
},
|
|
63857
|
+
"ar": {
|
|
63858
|
+
"type": "number",
|
|
63859
|
+
"description": "AR人气指标",
|
|
63860
|
+
"example": 100
|
|
63861
|
+
},
|
|
63862
|
+
"br": {
|
|
63863
|
+
"type": "number",
|
|
63864
|
+
"description": "BR意愿指标",
|
|
63865
|
+
"example": 100
|
|
63866
|
+
},
|
|
63867
|
+
"psy": {
|
|
63868
|
+
"type": "number",
|
|
63869
|
+
"description": "心理线PSY",
|
|
63870
|
+
"example": 50
|
|
63871
|
+
},
|
|
63872
|
+
"cr": {
|
|
63873
|
+
"type": "number",
|
|
63874
|
+
"description": "中间意愿指标/带状能量线",
|
|
63875
|
+
"example": 10
|
|
63876
|
+
}
|
|
63877
|
+
}
|
|
63878
|
+
}
|
|
63879
|
+
}
|
|
63880
|
+
}
|
|
63881
|
+
},
|
|
63882
|
+
"400": {
|
|
63883
|
+
"description": "无效请求"
|
|
63884
|
+
},
|
|
63885
|
+
"500": {
|
|
63886
|
+
"description": "服务器内部错误"
|
|
63887
|
+
}
|
|
63888
|
+
},
|
|
63889
|
+
"security": [
|
|
63890
|
+
{
|
|
63891
|
+
"ApiKeyAuth": []
|
|
63892
|
+
}
|
|
63893
|
+
]
|
|
63894
|
+
},
|
|
63895
|
+
"x-apikey-supported": [
|
|
63896
|
+
"resource"
|
|
63897
|
+
]
|
|
63898
|
+
},
|
|
63899
|
+
"/stock/adj-min-quotes": {
|
|
63900
|
+
"post": {
|
|
63901
|
+
"tags": [
|
|
63902
|
+
"股票分钟复权日行情"
|
|
63903
|
+
],
|
|
63904
|
+
"summary": "股票分钟复权日行情",
|
|
63905
|
+
"description": "使用股票代码和时间范围查询股票的复权行情数据,包括股票基本信息、行情时间、前收盘价、开盘价、最高价、最低价、最新价、成交量和成交金额等核心数据,适用于历史行情分析和数据回溯。",
|
|
63906
|
+
"operationId": "list_stk_adj_min_quotes",
|
|
63907
|
+
"requestBody": {
|
|
63908
|
+
"description": "使用股票代码和时间范围查询股票的复权行情数据,包括股票基本信息、行情时间、前收盘价、开盘价、最高价、最低价、最新价、成交量和成交金额等核心数据,适用于历史行情分析和数据回溯。",
|
|
63909
|
+
"content": {
|
|
63910
|
+
"application/json": {
|
|
63911
|
+
"schema": {
|
|
63912
|
+
"type": "object",
|
|
63913
|
+
"properties": {
|
|
63914
|
+
"stockCode": {
|
|
63915
|
+
"type": "string",
|
|
63916
|
+
"description": "股票代码【与stockCodes组成多选一参数,必须且只能传递其中一个】",
|
|
63917
|
+
"example": "002594"
|
|
63918
|
+
},
|
|
63919
|
+
"stockCodes": {
|
|
63920
|
+
"type": "array",
|
|
63921
|
+
"description": "股票代码列表【与stockCode组成多选一参数,必须且只能传递其中一个】",
|
|
63922
|
+
"example": [
|
|
63923
|
+
"000001",
|
|
63924
|
+
"600519"
|
|
63925
|
+
],
|
|
63926
|
+
"items": {
|
|
63927
|
+
"type": "string"
|
|
63928
|
+
}
|
|
63929
|
+
},
|
|
63930
|
+
"freq": {
|
|
63931
|
+
"type": "integer",
|
|
63932
|
+
"format": "int32",
|
|
63933
|
+
"allOf": [
|
|
63934
|
+
{
|
|
63935
|
+
"type": "integer",
|
|
63936
|
+
"format": "int32",
|
|
63937
|
+
"description": "1代表1分钟;\n5代表5分钟;\n30代表30分钟;\n60代表60分钟;\n120代表120分钟",
|
|
63938
|
+
"enum": [
|
|
63939
|
+
1,
|
|
63940
|
+
5,
|
|
63941
|
+
30,
|
|
63942
|
+
60,
|
|
63943
|
+
120
|
|
63944
|
+
]
|
|
63945
|
+
}
|
|
63946
|
+
],
|
|
63947
|
+
"description": "频率",
|
|
63948
|
+
"example": 1
|
|
63949
|
+
},
|
|
63950
|
+
"beginDate": {
|
|
63951
|
+
"type": "string",
|
|
63952
|
+
"description": "开始日期(格式yyyy-MM-dd)。\n最小值:2020-01-01;",
|
|
63953
|
+
"example": "2020-01-01"
|
|
63954
|
+
},
|
|
63955
|
+
"endDate": {
|
|
63956
|
+
"type": "string",
|
|
63957
|
+
"description": "结束日期(格式yyyy-MM-dd)",
|
|
63958
|
+
"example": "2025-01-01"
|
|
63959
|
+
},
|
|
63960
|
+
"pageNum": {
|
|
63961
|
+
"type": "integer",
|
|
63962
|
+
"format": "int32",
|
|
63963
|
+
"description": "页码。\n最小值:1;",
|
|
63964
|
+
"example": 1
|
|
63965
|
+
},
|
|
63966
|
+
"pageSize": {
|
|
63967
|
+
"type": "integer",
|
|
63968
|
+
"format": "int32",
|
|
63969
|
+
"description": "页长。\n最小值:1;\n最大值:500;",
|
|
63970
|
+
"example": 10
|
|
63971
|
+
}
|
|
63972
|
+
},
|
|
63973
|
+
"required": [
|
|
63974
|
+
"freq"
|
|
63975
|
+
]
|
|
63976
|
+
}
|
|
63977
|
+
}
|
|
63978
|
+
},
|
|
63979
|
+
"required": true
|
|
63980
|
+
},
|
|
63981
|
+
"responses": {
|
|
63982
|
+
"200": {
|
|
63983
|
+
"description": "成功响应",
|
|
63984
|
+
"content": {
|
|
63985
|
+
"application/json": {
|
|
63986
|
+
"schema": {
|
|
63987
|
+
"type": "object",
|
|
63988
|
+
"properties": {
|
|
63989
|
+
"date": {
|
|
63990
|
+
"type": "string",
|
|
63991
|
+
"description": "交易日期",
|
|
63992
|
+
"example": "2023-10-26"
|
|
63993
|
+
},
|
|
63994
|
+
"stockCode": {
|
|
63995
|
+
"type": "string",
|
|
63996
|
+
"description": "股票代码",
|
|
63997
|
+
"example": "000001"
|
|
63998
|
+
},
|
|
63999
|
+
"stockName": {
|
|
64000
|
+
"type": "string",
|
|
64001
|
+
"description": "股票名称",
|
|
64002
|
+
"example": "贵州茅台"
|
|
64003
|
+
},
|
|
64004
|
+
"openPrice": {
|
|
64005
|
+
"type": "number",
|
|
64006
|
+
"description": "开盘价",
|
|
64007
|
+
"example": 12.75
|
|
64008
|
+
},
|
|
64009
|
+
"highPrice": {
|
|
64010
|
+
"type": "number",
|
|
64011
|
+
"description": "最高价",
|
|
64012
|
+
"example": 128.75
|
|
64013
|
+
},
|
|
64014
|
+
"lowPrice": {
|
|
64015
|
+
"type": "number",
|
|
64016
|
+
"description": "最低价",
|
|
64017
|
+
"example": 12.75
|
|
64018
|
+
},
|
|
64019
|
+
"closePrice": {
|
|
64020
|
+
"type": "number",
|
|
64021
|
+
"description": "收盘价",
|
|
64022
|
+
"example": 15.75
|
|
64023
|
+
},
|
|
64024
|
+
"volume": {
|
|
64025
|
+
"type": "number",
|
|
64026
|
+
"description": "成交量(股)",
|
|
64027
|
+
"example": 12345.67
|
|
64028
|
+
},
|
|
64029
|
+
"amount": {
|
|
64030
|
+
"type": "number",
|
|
64031
|
+
"description": "成交金额(元)",
|
|
64032
|
+
"example": 123456.78
|
|
64033
|
+
},
|
|
64034
|
+
"changePct": {
|
|
64035
|
+
"type": "number",
|
|
64036
|
+
"description": "涨跌幅",
|
|
64037
|
+
"example": 0.025
|
|
64038
|
+
}
|
|
64039
|
+
}
|
|
64040
|
+
}
|
|
64041
|
+
}
|
|
64042
|
+
}
|
|
64043
|
+
},
|
|
64044
|
+
"400": {
|
|
64045
|
+
"description": "无效请求"
|
|
64046
|
+
},
|
|
64047
|
+
"500": {
|
|
64048
|
+
"description": "服务器内部错误"
|
|
64049
|
+
}
|
|
64050
|
+
},
|
|
64051
|
+
"security": [
|
|
64052
|
+
{
|
|
64053
|
+
"ApiKeyAuth": []
|
|
64054
|
+
}
|
|
64055
|
+
]
|
|
64056
|
+
},
|
|
64057
|
+
"x-apikey-supported": [
|
|
64058
|
+
"resource"
|
|
64059
|
+
]
|
|
63006
64060
|
}
|
|
63007
64061
|
},
|
|
63008
64062
|
"components": {
|
package/data/tree.json
CHANGED
|
@@ -394,6 +394,20 @@
|
|
|
394
394
|
"enabled": 1,
|
|
395
395
|
"apiAccessLevel": "L1",
|
|
396
396
|
"apiMethod": "POST"
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"apiId": 110637,
|
|
400
|
+
"apiName": "股票分钟未复权日行情",
|
|
401
|
+
"apiType": "SQL",
|
|
402
|
+
"apiStatus": "release",
|
|
403
|
+
"groupId": 1083,
|
|
404
|
+
"remarks": null,
|
|
405
|
+
"toolName": "list_stk_unadj_min_quotes",
|
|
406
|
+
"toolId": "list_stk_unadj_min_quotes",
|
|
407
|
+
"apiPath": "stock/unadj-min-quotes",
|
|
408
|
+
"enabled": 1,
|
|
409
|
+
"apiAccessLevel": "L1",
|
|
410
|
+
"apiMethod": "POST"
|
|
397
411
|
}
|
|
398
412
|
]
|
|
399
413
|
},
|
|
@@ -467,6 +481,20 @@
|
|
|
467
481
|
"enabled": 1,
|
|
468
482
|
"apiAccessLevel": "L1",
|
|
469
483
|
"apiMethod": "POST"
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
"apiId": 110641,
|
|
487
|
+
"apiName": "股票分钟复权日行情",
|
|
488
|
+
"apiType": "SQL",
|
|
489
|
+
"apiStatus": "release",
|
|
490
|
+
"groupId": 1084,
|
|
491
|
+
"remarks": null,
|
|
492
|
+
"toolName": "list_stk_adj_min_quotes",
|
|
493
|
+
"toolId": "list_stk_adj_min_quotes",
|
|
494
|
+
"apiPath": "stock/adj-min-quotes",
|
|
495
|
+
"enabled": 1,
|
|
496
|
+
"apiAccessLevel": "L1",
|
|
497
|
+
"apiMethod": "POST"
|
|
470
498
|
}
|
|
471
499
|
]
|
|
472
500
|
},
|
|
@@ -1809,7 +1837,7 @@
|
|
|
1809
1837
|
"updateBy": null,
|
|
1810
1838
|
"updateTime": null,
|
|
1811
1839
|
"groupId": 1071,
|
|
1812
|
-
"groupName": "个股诊断
|
|
1840
|
+
"groupName": "个股诊断",
|
|
1813
1841
|
"groupDesc": null,
|
|
1814
1842
|
"parentId": 1044,
|
|
1815
1843
|
"userId": null,
|
|
@@ -1986,6 +2014,37 @@
|
|
|
1986
2014
|
"apiMethod": "GET"
|
|
1987
2015
|
}
|
|
1988
2016
|
]
|
|
2017
|
+
},
|
|
2018
|
+
{
|
|
2019
|
+
"createBy": null,
|
|
2020
|
+
"createByName": null,
|
|
2021
|
+
"createTime": null,
|
|
2022
|
+
"updateBy": null,
|
|
2023
|
+
"updateTime": null,
|
|
2024
|
+
"groupId": 11167,
|
|
2025
|
+
"groupName": "dcf估值模型",
|
|
2026
|
+
"groupDesc": null,
|
|
2027
|
+
"parentId": 1071,
|
|
2028
|
+
"userId": null,
|
|
2029
|
+
"apiCount": 0,
|
|
2030
|
+
"isShow": 1,
|
|
2031
|
+
"children": [],
|
|
2032
|
+
"apis": [
|
|
2033
|
+
{
|
|
2034
|
+
"apiId": 110636,
|
|
2035
|
+
"apiName": "DCF估值模型结果",
|
|
2036
|
+
"apiType": "SQL",
|
|
2037
|
+
"apiStatus": "release",
|
|
2038
|
+
"groupId": 11167,
|
|
2039
|
+
"remarks": null,
|
|
2040
|
+
"toolName": "list_stock_dcf_result",
|
|
2041
|
+
"toolId": "list_stock_dcf_result",
|
|
2042
|
+
"apiPath": "stock/dcf-result",
|
|
2043
|
+
"enabled": 1,
|
|
2044
|
+
"apiAccessLevel": "L5",
|
|
2045
|
+
"apiMethod": "POST"
|
|
2046
|
+
}
|
|
2047
|
+
]
|
|
1989
2048
|
}
|
|
1990
2049
|
],
|
|
1991
2050
|
"apis": [
|
|
@@ -5128,6 +5187,48 @@
|
|
|
5128
5187
|
"enabled": 1,
|
|
5129
5188
|
"apiAccessLevel": "L2",
|
|
5130
5189
|
"apiMethod": "POST"
|
|
5190
|
+
},
|
|
5191
|
+
{
|
|
5192
|
+
"apiId": 110638,
|
|
5193
|
+
"apiName": "基金强弱与趋向指标",
|
|
5194
|
+
"apiType": "SQL",
|
|
5195
|
+
"apiStatus": "release",
|
|
5196
|
+
"groupId": 11146,
|
|
5197
|
+
"remarks": null,
|
|
5198
|
+
"toolName": "list_fund_str_trend_ind",
|
|
5199
|
+
"toolId": "list_fund_strength_trend_indicators",
|
|
5200
|
+
"apiPath": "fund/str-trend-ind",
|
|
5201
|
+
"enabled": 1,
|
|
5202
|
+
"apiAccessLevel": "L2",
|
|
5203
|
+
"apiMethod": "POST"
|
|
5204
|
+
},
|
|
5205
|
+
{
|
|
5206
|
+
"apiId": 110639,
|
|
5207
|
+
"apiName": "基金摆动与超买超卖指标",
|
|
5208
|
+
"apiType": "SQL",
|
|
5209
|
+
"apiStatus": "release",
|
|
5210
|
+
"groupId": 11146,
|
|
5211
|
+
"remarks": null,
|
|
5212
|
+
"toolName": "list_fund_osc_indicators",
|
|
5213
|
+
"toolId": "list_fund_oscillator_indicators",
|
|
5214
|
+
"apiPath": "fund/osc-indicators",
|
|
5215
|
+
"enabled": 1,
|
|
5216
|
+
"apiAccessLevel": "L2",
|
|
5217
|
+
"apiMethod": "POST"
|
|
5218
|
+
},
|
|
5219
|
+
{
|
|
5220
|
+
"apiId": 110640,
|
|
5221
|
+
"apiName": "基金量价与压力支撑指标",
|
|
5222
|
+
"apiType": "SQL",
|
|
5223
|
+
"apiStatus": "release",
|
|
5224
|
+
"groupId": 11146,
|
|
5225
|
+
"remarks": null,
|
|
5226
|
+
"toolName": "list_fund_price_vol_ind",
|
|
5227
|
+
"toolId": "list_fund_price_volume_indicators",
|
|
5228
|
+
"apiPath": "fund/price-vol-ind",
|
|
5229
|
+
"enabled": 1,
|
|
5230
|
+
"apiAccessLevel": "L2",
|
|
5231
|
+
"apiMethod": "POST"
|
|
5131
5232
|
}
|
|
5132
5233
|
]
|
|
5133
5234
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@investoday/investoday-api",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.3",
|
|
4
4
|
"description": "CLI for accessing InvestToday China market financial data via investoday-api.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/investoday-data/investoday-finance-data",
|