stock-sdk 1.4.5 → 1.6.0

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/dist/index.d.cts CHANGED
@@ -625,11 +625,69 @@ interface SearchResult {
625
625
  /** 资产类别 (GP-A/GP/KJ 等) */
626
626
  type: string;
627
627
  }
628
+ /**
629
+ * 分红派送详情
630
+ */
631
+ interface DividendDetail {
632
+ /** 股票代码 */
633
+ code: string;
634
+ /** 股票名称 */
635
+ name: string;
636
+ /** 报告期 YYYY-MM-DD */
637
+ reportDate: string | null;
638
+ /** 预案公告日 YYYY-MM-DD */
639
+ planNoticeDate: string | null;
640
+ /** 业绩披露日期 YYYY-MM-DD */
641
+ disclosureDate: string | null;
642
+ /** 送转总比例(每10股送转X股) */
643
+ assignTransferRatio: number | null;
644
+ /** 送股比例(每10股送X股) */
645
+ bonusRatio: number | null;
646
+ /** 转股比例(每10股转X股) */
647
+ transferRatio: number | null;
648
+ /** 每10股派息(税前),单位:元 */
649
+ dividendPretax: number | null;
650
+ /** 分红描述(如:10派2.36元(含税,扣税后2.124元)) */
651
+ dividendDesc: string | null;
652
+ /** 股息率 */
653
+ dividendYield: number | null;
654
+ /** 每股收益(元) */
655
+ eps: number | null;
656
+ /** 每股净资产(元) */
657
+ bps: number | null;
658
+ /** 每股公积金(元) */
659
+ capitalReserve: number | null;
660
+ /** 每股未分配利润(元) */
661
+ unassignedProfit: number | null;
662
+ /** 净利润同比增长(%) */
663
+ netProfitYoy: number | null;
664
+ /** 总股本(股) */
665
+ totalShares: number | null;
666
+ /** 股权登记日 YYYY-MM-DD */
667
+ equityRecordDate: string | null;
668
+ /** 除权除息日 YYYY-MM-DD */
669
+ exDividendDate: string | null;
670
+ /** 现金分红发放日 YYYY-MM-DD */
671
+ payDate: string | null;
672
+ /** 方案进度(如:实施分配、股东大会预案等) */
673
+ assignProgress: string | null;
674
+ /** 最新公告日期 YYYY-MM-DD */
675
+ noticeDate: string | null;
676
+ }
628
677
 
629
678
  /**
630
679
  * 腾讯财经 - 批量操作
631
680
  */
632
681
 
682
+ /**
683
+ * A 股市场/板块类型
684
+ * - sh: 上交所(6 开头)
685
+ * - sz: 深交所(0 和 3 开头,包含创业板)
686
+ * - bj: 北交所(92 开头)
687
+ * - kc: 科创板(688 开头)
688
+ * - cy: 创业板(30 开头)
689
+ */
690
+ type AShareMarket = 'sh' | 'sz' | 'bj' | 'kc' | 'cy';
633
691
  /**
634
692
  * 获取全部 A 股行情的配置选项
635
693
  */
@@ -640,6 +698,62 @@ interface GetAllAShareQuotesOptions {
640
698
  concurrency?: number;
641
699
  /** 进度回调函数 */
642
700
  onProgress?: (completed: number, total: number) => void;
701
+ /**
702
+ * 筛选特定的交易所或板块
703
+ * - 不传或 undefined: 返回全部 A 股
704
+ * - 'sh': 上交所(6 开头,包含科创板)
705
+ * - 'sz': 深交所(0 和 3 开头,包含创业板)
706
+ * - 'bj': 北交所(92 开头)
707
+ * - 'kc': 科创板(688 开头)
708
+ * - 'cy': 创业板(30 开头)
709
+ */
710
+ market?: AShareMarket;
711
+ }
712
+ /**
713
+ * 获取全部美股行情的配置选项
714
+ */
715
+ interface GetAllUSQuotesOptions {
716
+ /** 单次请求的股票数量,默认 500 */
717
+ batchSize?: number;
718
+ /** 最大并发请求数,默认 7 */
719
+ concurrency?: number;
720
+ /** 进度回调函数 */
721
+ onProgress?: (completed: number, total: number) => void;
722
+ /**
723
+ * 筛选特定市场
724
+ * - 'NASDAQ': 纳斯达克 (105)
725
+ * - 'NYSE': 纽交所 (106)
726
+ * - 'AMEX': 美交所 (107)
727
+ */
728
+ market?: USMarket;
729
+ }
730
+ /**
731
+ * 获取 A 股代码列表的配置选项
732
+ */
733
+ interface GetAShareCodeListOptions {
734
+ /**
735
+ * 是否返回简化的代码(不含交易所前缀)
736
+ * - false(默认): 返回带前缀的完整代码,如 'sh600000', 'sz000001'
737
+ * - true: 返回纯数字代码,如 '600000', '000001'
738
+ */
739
+ simple?: boolean;
740
+ /**
741
+ * 筛选特定的交易所或板块
742
+ * - 不传或 undefined: 返回全部 A 股
743
+ * - 'sh': 上交所(6 开头,包含科创板)
744
+ * - 'sz': 深交所(0 和 3 开头,包含创业板)
745
+ * - 'bj': 北交所(92 开头)
746
+ * - 'kc': 科创板(688 开头)
747
+ * - 'cy': 创业板(30 开头)
748
+ */
749
+ market?: AShareMarket;
750
+ }
751
+ type USMarket = 'NASDAQ' | 'NYSE' | 'AMEX';
752
+ interface GetUSCodeListOptions {
753
+ /** 是否移除市场前缀,默认 false */
754
+ simple?: boolean;
755
+ /** 筛选特定市场 */
756
+ market?: USMarket;
643
757
  }
644
758
 
645
759
  /**
@@ -852,6 +966,80 @@ interface ATRResult {
852
966
  /** 平均真实波幅 */
853
967
  atr: number | null;
854
968
  }
969
+ interface OBVOptions$1 {
970
+ /** OBV 均线周期 */
971
+ maPeriod?: number;
972
+ }
973
+ interface OBVResult$1 {
974
+ /** OBV 值 */
975
+ obv: number | null;
976
+ /** OBV 均线 */
977
+ obvMa: number | null;
978
+ }
979
+ interface ROCOptions$1 {
980
+ /** ROC 周期,默认 12 */
981
+ period?: number;
982
+ /** 信号线周期 */
983
+ signalPeriod?: number;
984
+ }
985
+ interface ROCResult$1 {
986
+ /** ROC 值(百分比) */
987
+ roc: number | null;
988
+ /** 信号线 */
989
+ signal: number | null;
990
+ }
991
+ interface DMIOptions$1 {
992
+ /** 周期,默认 14 */
993
+ period?: number;
994
+ /** ADX 平滑周期 */
995
+ adxPeriod?: number;
996
+ }
997
+ interface DMIResult$1 {
998
+ /** +DI 值 */
999
+ pdi: number | null;
1000
+ /** -DI 值 */
1001
+ mdi: number | null;
1002
+ /** ADX 值 */
1003
+ adx: number | null;
1004
+ /** ADXR 值 */
1005
+ adxr: number | null;
1006
+ }
1007
+ interface SAROptions$1 {
1008
+ /** 加速因子初始值,默认 0.02 */
1009
+ afStart?: number;
1010
+ /** 加速因子增量,默认 0.02 */
1011
+ afIncrement?: number;
1012
+ /** 加速因子最大值,默认 0.2 */
1013
+ afMax?: number;
1014
+ }
1015
+ interface SARResult$1 {
1016
+ /** SAR 值 */
1017
+ sar: number | null;
1018
+ /** 趋势方向:1 上升,-1 下降 */
1019
+ trend: 1 | -1 | null;
1020
+ /** 极值点 */
1021
+ ep: number | null;
1022
+ /** 加速因子 */
1023
+ af: number | null;
1024
+ }
1025
+ interface KCOptions$1 {
1026
+ /** EMA 周期,默认 20 */
1027
+ emaPeriod?: number;
1028
+ /** ATR 周期,默认 10 */
1029
+ atrPeriod?: number;
1030
+ /** ATR 倍数,默认 2 */
1031
+ multiplier?: number;
1032
+ }
1033
+ interface KCResult$1 {
1034
+ /** 中轨(EMA) */
1035
+ mid: number | null;
1036
+ /** 上轨 */
1037
+ upper: number | null;
1038
+ /** 下轨 */
1039
+ lower: number | null;
1040
+ /** 通道宽度 */
1041
+ width: number | null;
1042
+ }
855
1043
 
856
1044
  /**
857
1045
  * 计算简单移动平均线 SMA
@@ -941,6 +1129,245 @@ declare function calcCCI(data: OHLCV[], options?: CCIOptions): CCIResult[];
941
1129
  */
942
1130
  declare function calcATR(data: OHLCV[], options?: ATROptions): ATRResult[];
943
1131
 
1132
+ /**
1133
+ * OBV - On Balance Volume(能量潮)
1134
+ * 通过成交量的累积来判断股价走势
1135
+ */
1136
+
1137
+ /**
1138
+ * OBV 配置选项
1139
+ */
1140
+ interface OBVOptions {
1141
+ /** OBV 均线周期,默认不计算 */
1142
+ maPeriod?: number;
1143
+ }
1144
+ /**
1145
+ * OBV 计算结果
1146
+ */
1147
+ interface OBVResult {
1148
+ /** OBV 值 */
1149
+ obv: number | null;
1150
+ /** OBV 均线(如果配置了 maPeriod) */
1151
+ obvMa: number | null;
1152
+ }
1153
+ /**
1154
+ * 计算 OBV(能量潮)
1155
+ *
1156
+ * @description
1157
+ * OBV 是一个累积指标,通过比较当日收盘价与前一日收盘价来确定成交量的正负:
1158
+ * - 当日收盘价 > 前日收盘价:OBV = 前日 OBV + 当日成交量
1159
+ * - 当日收盘价 < 前日收盘价:OBV = 前日 OBV - 当日成交量
1160
+ * - 当日收盘价 = 前日收盘价:OBV = 前日 OBV
1161
+ *
1162
+ * @param data K 线数据数组
1163
+ * @param options 配置选项
1164
+ * @returns OBV 结果数组
1165
+ *
1166
+ * @example
1167
+ * const obv = calcOBV(klines);
1168
+ * console.log(obv[10].obv); // OBV 值
1169
+ */
1170
+ declare function calcOBV(data: OHLCV[], options?: OBVOptions): OBVResult[];
1171
+
1172
+ /**
1173
+ * ROC - Rate of Change(变动率指标)
1174
+ * 衡量价格变化的速度和幅度
1175
+ */
1176
+
1177
+ /**
1178
+ * ROC 配置选项
1179
+ */
1180
+ interface ROCOptions {
1181
+ /** ROC 周期,默认 12 */
1182
+ period?: number;
1183
+ /** 信号线周期,默认不计算 */
1184
+ signalPeriod?: number;
1185
+ }
1186
+ /**
1187
+ * ROC 计算结果
1188
+ */
1189
+ interface ROCResult {
1190
+ /** ROC 值(百分比) */
1191
+ roc: number | null;
1192
+ /** ROC 的 MA 信号线 */
1193
+ signal: number | null;
1194
+ }
1195
+ /**
1196
+ * 计算 ROC(变动率指标)
1197
+ *
1198
+ * @description
1199
+ * ROC = (当日收盘价 - N 日前收盘价) / N 日前收盘价 × 100
1200
+ *
1201
+ * 信号解读:
1202
+ * - ROC 由负转正:买入信号
1203
+ * - ROC 由正转负:卖出信号
1204
+ * - ROC 与价格背离:可能的反转信号
1205
+ *
1206
+ * @param data K 线数据数组
1207
+ * @param options 配置选项
1208
+ * @returns ROC 结果数组
1209
+ *
1210
+ * @example
1211
+ * const roc = calcROC(klines, { period: 12 });
1212
+ * console.log(roc[20].roc); // ROC 值
1213
+ */
1214
+ declare function calcROC(data: OHLCV[], options?: ROCOptions): ROCResult[];
1215
+
1216
+ /**
1217
+ * DMI/ADX - Directional Movement Index(趋向指标)
1218
+ * 判断趋势的方向和强度
1219
+ */
1220
+
1221
+ /**
1222
+ * DMI 配置选项
1223
+ */
1224
+ interface DMIOptions {
1225
+ /** 周期,默认 14 */
1226
+ period?: number;
1227
+ /** ADX 平滑周期,默认与 period 相同 */
1228
+ adxPeriod?: number;
1229
+ }
1230
+ /**
1231
+ * DMI 计算结果
1232
+ */
1233
+ interface DMIResult {
1234
+ /** +DI 值 */
1235
+ pdi: number | null;
1236
+ /** -DI 值 */
1237
+ mdi: number | null;
1238
+ /** ADX 值(趋势强度) */
1239
+ adx: number | null;
1240
+ /** ADXR 值(ADX 的平均) */
1241
+ adxr: number | null;
1242
+ }
1243
+ /**
1244
+ * 计算 DMI/ADX(趋向指标)
1245
+ *
1246
+ * @description
1247
+ * DMI 包含三个指标:
1248
+ * - +DI:上升方向指标
1249
+ * - -DI:下降方向指标
1250
+ * - ADX:平均趋向指数,衡量趋势强度
1251
+ *
1252
+ * 信号解读:
1253
+ * - +DI > -DI:上升趋势
1254
+ * - -DI > +DI:下降趋势
1255
+ * - ADX > 25:趋势明显
1256
+ * - ADX < 20:横盘整理
1257
+ *
1258
+ * @param data K 线数据数组
1259
+ * @param options 配置选项
1260
+ * @returns DMI 结果数组
1261
+ *
1262
+ * @example
1263
+ * const dmi = calcDMI(klines, { period: 14 });
1264
+ * console.log(dmi[20].pdi); // +DI
1265
+ * console.log(dmi[20].mdi); // -DI
1266
+ * console.log(dmi[20].adx); // ADX
1267
+ */
1268
+ declare function calcDMI(data: OHLCV[], options?: DMIOptions): DMIResult[];
1269
+
1270
+ /**
1271
+ * SAR - Parabolic SAR(抛物线转向指标)
1272
+ * 判断趋势反转点和止损位
1273
+ */
1274
+
1275
+ /**
1276
+ * SAR 配置选项
1277
+ */
1278
+ interface SAROptions {
1279
+ /** 加速因子初始值,默认 0.02 */
1280
+ afStart?: number;
1281
+ /** 加速因子增量,默认 0.02 */
1282
+ afIncrement?: number;
1283
+ /** 加速因子最大值,默认 0.2 */
1284
+ afMax?: number;
1285
+ }
1286
+ /**
1287
+ * SAR 计算结果
1288
+ */
1289
+ interface SARResult {
1290
+ /** SAR 值 */
1291
+ sar: number | null;
1292
+ /** 当前趋势:1 为上升,-1 为下降 */
1293
+ trend: 1 | -1 | null;
1294
+ /** 极值点 */
1295
+ ep: number | null;
1296
+ /** 加速因子 */
1297
+ af: number | null;
1298
+ }
1299
+ /**
1300
+ * 计算 SAR(抛物线转向指标)
1301
+ *
1302
+ * @description
1303
+ * Parabolic SAR 用于确定价格的趋势方向和潜在的反转点:
1304
+ * - 当价格在 SAR 之上时,SAR 在价格下方,表示上升趋势
1305
+ * - 当价格在 SAR 之下时,SAR 在价格上方,表示下降趋势
1306
+ * - SAR 可用作动态止损位
1307
+ *
1308
+ * @param data K 线数据数组
1309
+ * @param options 配置选项
1310
+ * @returns SAR 结果数组
1311
+ *
1312
+ * @example
1313
+ * const sar = calcSAR(klines);
1314
+ * console.log(sar[20].sar); // SAR 值
1315
+ * console.log(sar[20].trend); // 趋势方向
1316
+ */
1317
+ declare function calcSAR(data: OHLCV[], options?: SAROptions): SARResult[];
1318
+
1319
+ /**
1320
+ * KC - Keltner Channel(肯特纳通道)
1321
+ * 基于 ATR 的价格通道指标
1322
+ */
1323
+
1324
+ /**
1325
+ * KC 配置选项
1326
+ */
1327
+ interface KCOptions {
1328
+ /** EMA 周期,默认 20 */
1329
+ emaPeriod?: number;
1330
+ /** ATR 周期,默认 10 */
1331
+ atrPeriod?: number;
1332
+ /** ATR 倍数,默认 2 */
1333
+ multiplier?: number;
1334
+ }
1335
+ /**
1336
+ * KC 计算结果
1337
+ */
1338
+ interface KCResult {
1339
+ /** 中轨(EMA) */
1340
+ mid: number | null;
1341
+ /** 上轨 */
1342
+ upper: number | null;
1343
+ /** 下轨 */
1344
+ lower: number | null;
1345
+ /** 通道宽度 */
1346
+ width: number | null;
1347
+ }
1348
+ /**
1349
+ * 计算 KC(肯特纳通道)
1350
+ *
1351
+ * @description
1352
+ * Keltner Channel 是一个基于 ATR 的价格通道:
1353
+ * - 中轨 = EMA(close, period)
1354
+ * - 上轨 = 中轨 + multiplier × ATR
1355
+ * - 下轨 = 中轨 - multiplier × ATR
1356
+ *
1357
+ * 与布林带相比,KC 使用 ATR 而非标准差,对价格变化反应更平滑。
1358
+ *
1359
+ * @param data K 线数据数组
1360
+ * @param options 配置选项
1361
+ * @returns KC 结果数组
1362
+ *
1363
+ * @example
1364
+ * const kc = calcKC(klines, { emaPeriod: 20, multiplier: 2 });
1365
+ * console.log(kc[30].upper); // 上轨
1366
+ * console.log(kc[30].mid); // 中轨
1367
+ * console.log(kc[30].lower); // 下轨
1368
+ */
1369
+ declare function calcKC(data: OHLCV[], options?: KCOptions): KCResult[];
1370
+
944
1371
  /**
945
1372
  * 带技术指标的 K 线数据
946
1373
  */
@@ -1097,20 +1524,69 @@ declare class StockSDK {
1097
1524
  search(keyword: string): Promise<SearchResult[]>;
1098
1525
  /**
1099
1526
  * 从远程获取 A 股代码列表
1100
- * @param includeExchange 是否包含交易所前缀(如 sh、sz、bj),默认 true
1527
+ * @param options 配置选项
1528
+ *
1529
+ * @example
1530
+ * // 获取全部 A 股(带交易所前缀)
1531
+ * const codes = await sdk.getAShareCodeList();
1532
+ *
1533
+ * @example
1534
+ * // 获取全部 A 股(不带交易所前缀)
1535
+ * const codes = await sdk.getAShareCodeList({ simple: true });
1536
+ *
1537
+ * @example
1538
+ * // 获取科创板股票
1539
+ * const codes = await sdk.getAShareCodeList({ market: 'kc' });
1540
+ *
1541
+ * @example
1542
+ * // 获取创业板股票(不带前缀)
1543
+ * const codes = await sdk.getAShareCodeList({ simple: true, market: 'cy' });
1101
1544
  */
1102
- getAShareCodeList(includeExchange?: boolean): Promise<string[]>;
1545
+ getAShareCodeList(options?: GetAShareCodeListOptions | boolean): Promise<string[]>;
1103
1546
  /**
1104
1547
  * 从远程获取美股代码列表
1105
- * @param includeMarket 是否包含市场前缀(如 105.、106.),默认 true
1548
+ * @param options 配置选项
1549
+ *
1550
+ * @example
1551
+ * // 获取全部美股(带市场前缀)
1552
+ * const codes = await sdk.getUSCodeList();
1553
+ * // ['105.AAPL', '106.BABA', ...]
1554
+ *
1555
+ * @example
1556
+ * // 获取全部美股(不带市场前缀)
1557
+ * const codes = await sdk.getUSCodeList({ simple: true });
1558
+ * // ['AAPL', 'BABA', ...]
1559
+ *
1560
+ * @example
1561
+ * // 筛选纳斯达克股票
1562
+ * const codes = await sdk.getUSCodeList({ market: 'NASDAQ' });
1563
+ * // ['105.AAPL', ...]
1564
+ *
1565
+ * @example
1566
+ * // 筛选纽交所股票
1567
+ * const codes = await sdk.getUSCodeList({ market: 'NYSE' });
1568
+ * // ['106.BABA', ...]
1106
1569
  */
1107
- getUSCodeList(includeMarket?: boolean): Promise<string[]>;
1570
+ getUSCodeList(options?: GetUSCodeListOptions | boolean): Promise<string[]>;
1108
1571
  /**
1109
1572
  * 从远程获取港股代码列表
1110
1573
  */
1111
1574
  getHKCodeList(): Promise<string[]>;
1112
1575
  /**
1113
1576
  * 获取全部 A 股实时行情
1577
+ * @param options 配置选项
1578
+ *
1579
+ * @example
1580
+ * // 获取全部 A 股行情
1581
+ * const quotes = await sdk.getAllAShareQuotes();
1582
+ *
1583
+ * @example
1584
+ * // 获取科创板行情
1585
+ * const kcQuotes = await sdk.getAllAShareQuotes({ market: 'kc' });
1586
+ *
1587
+ * @example
1588
+ * // 获取创业板行情
1589
+ * const cyQuotes = await sdk.getAllAShareQuotes({ market: 'cy' });
1114
1590
  */
1115
1591
  getAllAShareQuotes(options?: GetAllAShareQuotesOptions): Promise<FullQuote[]>;
1116
1592
  /**
@@ -1119,8 +1595,24 @@ declare class StockSDK {
1119
1595
  getAllHKShareQuotes(options?: GetAllAShareQuotesOptions): Promise<HKQuote[]>;
1120
1596
  /**
1121
1597
  * 获取全部美股实时行情
1598
+ * @param options 配置选项
1599
+ *
1600
+ * @example
1601
+ * // 获取全部美股行情
1602
+ * const quotes = await sdk.getAllUSShareQuotes();
1603
+ *
1604
+ * @example
1605
+ * // 获取纳斯达克股票行情
1606
+ * const nasdaqQuotes = await sdk.getAllUSShareQuotes({ market: 'NASDAQ' });
1607
+ *
1608
+ * @example
1609
+ * // 获取纽交所股票行情(带进度回调)
1610
+ * const nyseQuotes = await sdk.getAllUSShareQuotes({
1611
+ * market: 'NYSE',
1612
+ * onProgress: (completed, total) => console.log(`${completed}/${total}`)
1613
+ * });
1122
1614
  */
1123
- getAllUSShareQuotes(options?: GetAllAShareQuotesOptions): Promise<USQuote[]>;
1615
+ getAllUSShareQuotes(options?: GetAllUSQuotesOptions): Promise<USQuote[]>;
1124
1616
  /**
1125
1617
  * 获取全部股票实时行情(使用自定义股票代码列表)
1126
1618
  */
@@ -1138,6 +1630,17 @@ declare class StockSDK {
1138
1630
  * @returns 交易日期字符串数组,格式如 ['1990-12-19', '1990-12-20', ...]
1139
1631
  */
1140
1632
  getTradingCalendar(): Promise<string[]>;
1633
+ /**
1634
+ * 获取股票分红派送详情
1635
+ * @param symbol - 股票代码(纯数字或带交易所前缀),如 '600519' 或 'sh600519'
1636
+ * @returns 分红派送详情列表,按报告日期降序排列
1637
+ *
1638
+ * @example
1639
+ * // 获取贵州茅台的分红历史
1640
+ * const dividends = await sdk.getDividendDetail('600519');
1641
+ * console.log(dividends[0].dividendPretax); // 每10股派息(税前)
1642
+ */
1643
+ getDividendDetail(symbol: string): Promise<DividendDetail[]>;
1141
1644
  /**
1142
1645
  * 市场类型识别
1143
1646
  */
@@ -1189,4 +1692,4 @@ declare class StockSDK {
1189
1692
  }): Promise<KlineWithIndicators<HistoryKline | HKUSHistoryKline>[]>;
1190
1693
  }
1191
1694
 
1192
- export { type ATROptions, type BIASOptions, type BOLLOptions, type CCIOptions, type ConceptBoard, type ConceptBoardConstituent, type ConceptBoardKline, type ConceptBoardKlineOptions, type ConceptBoardMinuteKline, type ConceptBoardMinuteKlineOptions, type ConceptBoardMinuteTimeline, type ConceptBoardSpot, type FullQuote, type FundFlow, type FundQuote, type GetAllAShareQuotesOptions, type HKQuote, type HKUSHistoryKline, type HistoryKline, HttpError, type IndicatorOptions, type IndustryBoard, type IndustryBoardConstituent, type IndustryBoardKline, type IndustryBoardKlineOptions, type IndustryBoardMinuteKline, type IndustryBoardMinuteKlineOptions, type IndustryBoardMinuteTimeline, type IndustryBoardSpot, type KDJOptions, type KlineWithIndicators, type MACDOptions, type MAOptions, type MarketType, type MinuteKline, type MinuteTimeline, type PanelLargeOrder, type RSIOptions, type RequestClientOptions, type RetryOptions, type SearchResult, type SimpleQuote, StockSDK, type TodayTimeline, type TodayTimelineResponse, type USQuote, type WROptions, addIndicators, asyncPool, calcATR, calcBIAS, calcBOLL, calcCCI, calcEMA, calcKDJ, calcMA, calcMACD, calcRSI, calcSMA, calcWMA, calcWR, chunkArray, decodeGBK, StockSDK as default, parseResponse, safeNumber, safeNumberOrNull };
1695
+ export { type AShareMarket, type ATROptions, type BIASOptions, type BOLLOptions, type CCIOptions, type ConceptBoard, type ConceptBoardConstituent, type ConceptBoardKline, type ConceptBoardKlineOptions, type ConceptBoardMinuteKline, type ConceptBoardMinuteKlineOptions, type ConceptBoardMinuteTimeline, type ConceptBoardSpot, type DMIOptions$1 as DMIOptions, type DMIResult$1 as DMIResult, type DividendDetail, type FullQuote, type FundFlow, type FundQuote, type GetAShareCodeListOptions, type GetAllAShareQuotesOptions, type HKQuote, type HKUSHistoryKline, type HistoryKline, HttpError, type IndicatorOptions, type IndustryBoard, type IndustryBoardConstituent, type IndustryBoardKline, type IndustryBoardKlineOptions, type IndustryBoardMinuteKline, type IndustryBoardMinuteKlineOptions, type IndustryBoardMinuteTimeline, type IndustryBoardSpot, type KCOptions$1 as KCOptions, type KCResult$1 as KCResult, type KDJOptions, type KlineWithIndicators, type MACDOptions, type MAOptions, type MarketType, type MinuteKline, type MinuteTimeline, type OBVOptions$1 as OBVOptions, type OBVResult$1 as OBVResult, type PanelLargeOrder, type ROCOptions$1 as ROCOptions, type ROCResult$1 as ROCResult, type RSIOptions, type RequestClientOptions, type RetryOptions, type SAROptions$1 as SAROptions, type SARResult$1 as SARResult, type SearchResult, type SimpleQuote, StockSDK, type TodayTimeline, type TodayTimelineResponse, type USQuote, type WROptions, addIndicators, asyncPool, calcATR, calcBIAS, calcBOLL, calcCCI, calcDMI, calcEMA, calcKC, calcKDJ, calcMA, calcMACD, calcOBV, calcROC, calcRSI, calcSAR, calcSMA, calcWMA, calcWR, chunkArray, decodeGBK, StockSDK as default, parseResponse, safeNumber, safeNumberOrNull };