tigeropen 0.4.3

老虎证券 OpenAPI Rust SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
//! 行情客户端,封装所有行情相关 API。
//!
//! 所有方法返回强类型响应([`MarketState`]、[`Brief`]、[`Kline`] 等),
//! 请求参数使用 snake_case 序列化(匹配服务端约定)。

use serde::Serialize;
use serde_json::Value;

use crate::client::api_request::ApiRequest;
use crate::client::decode::decode_value;
use crate::client::http_client::HttpClient;
use crate::error::TigerError;
use crate::model::quote::{
    Brief, CapitalDistribution, CapitalFlow, CorporateAction, CorporateActionRequest, Depth,
    ExchangeRate, FinancialCurrency, FinancialDailyItem, FinancialDailyRequest,
    FinancialReportItem, FinancialReportRequest, FundContractInfo, FundHistoryQuote, FundQuote,
    FutureContractInfo, FutureDepth, FutureExchange, FutureKline, FutureKlineRequest,
    FutureMainContractHistory, FutureQuote, FutureTradingTime, FutureTradeTickItem,
    IndustryItem, IndustryStock, Kline, KlineItem, KlineQuota, MarketScannerRequest,
    MarketScannerTags, MarketState, OptionAnalysis, OptionBrief, OptionChain, OptionExpiration,
    OptionKline, OptionSymbol, QuoteOvernight, QuotePermission, ScannerResult, ShortInterest,
    StockBroker, StockDetail, StockIndustry, SymbolName, Timeline, TradeTick, TradeRankItem,
    TradingCalendarItem, WarrantBrief, WarrantFilterResult, FutureKlineItem,
};
use crate::model::quote_requests::{
    AllFutureContractsRequest, BarsRequest, BarsByPageRequest, BriefRequest, DepthQuoteRequest,
    FinancialCurrencyRequest, FinancialExchangeRateRequest, FutureBarsRequest,
    FutureBarsByPageRequest, FutureBriefRequest, FutureContinuousContractsRequest,
    FutureContractSingleRequest, FutureDepthRequest, FutureHistoryMainContractRequest,
    FutureTradingTimesRequest, FutureTradeTicksRequest, FundContractsRequest, FundHistoryQuoteRequest,
    FundQuoteRequest, FundSymbolsRequest, IndustryListRequest, IndustryStocksRequest,
    KlineQuotaRequest, MarketScannerTagsRequest, OptionAnalysisRequest, OptionBarsRequest,
    OptionDepthRequest, OptionSymbolsRequest, OptionTimelineRequest, OptionTradeTicksRequest,
    QuoteOvernightRequest, QuotePermissionRequest, ShortInterestRequest, StockBrokerRequest,
    StockDelayBriefsRequest, StockDetailsRequest, StockFundamentalRequest, StockIndustryRequest,
    SymbolsRequest, TimelineHistoryRequest, TradeMetasRequest, TradeRankRequest, TradeTickRequest,
    TradingCalendarRequest, WarrantBriefsRequest, WarrantFilterRequest,
};

/// API 版本常量
const VERSION_V1: &str = "1.0";
const VERSION_V2: &str = "2.0";
const VERSION_V3: &str = "3.0";

/// 行情客户端,封装所有行情 API。
pub struct QuoteClient<'a> {
    http_client: &'a HttpClient,
}

impl<'a> QuoteClient<'a> {
    /// 创建行情客户端。调用方通常使用 [`HttpClient::with_quote_server`] 以便
    /// 请求发往 `config.quote_server_url`。
    pub fn new(http_client: &'a HttpClient) -> Self {
        Self { http_client }
    }

    /// 内部通用:构造请求、发送、把 data 解析为 T。
    async fn call_into<T, P>(&self, method: &str, params: P) -> Result<T, TigerError>
    where
        T: serde::de::DeserializeOwned + Default,
        P: Serialize,
    {
        self.call_into_versioned(method, params, None).await
    }

    async fn call_into_versioned<T, P>(
        &self,
        method: &str,
        params: P,
        version: Option<&str>,
    ) -> Result<T, TigerError>
    where
        T: serde::de::DeserializeOwned + Default,
        P: Serialize,
    {
        let biz = serde_json::to_string(&params)
            .map_err(|e| TigerError::Config(format!("serialize biz params failed: {}", e)))?;
        let req = match version {
            Some(v) => ApiRequest::with_version(method, biz, v),
            None => ApiRequest::new(method, biz),
        };
        let resp = self.http_client.execute_request(&req).await?;
        unmarshal_data(resp.data)
    }

    /// 解包 {items:[...]} 外壳并返回 items 列表。
    async fn call_into_items<T, P>(&self, method: &str, params: P) -> Result<Vec<T>, TigerError>
    where
        T: serde::de::DeserializeOwned,
        P: Serialize,
    {
        let wrap: serde_json::Value = self.call_into(method, params).await?;
        match wrap.get("items") {
            None | Some(Value::Null) => Ok(vec![]),
            Some(items) => serde_json::from_value(items.clone())
                .map_err(|e| TigerError::Config(format!("decode items failed: {}", e))),
        }
    }

    /// 解包可能返回数组或单对象的接口(统一成 Vec)。
    async fn call_into_list_or_object<T, P>(
        &self,
        method: &str,
        params: P,
    ) -> Result<Vec<T>, TigerError>
    where
        T: serde::de::DeserializeOwned,
        P: Serialize,
    {
        let biz = serde_json::to_string(&params)
            .map_err(|e| TigerError::Config(format!("serialize biz params failed: {}", e)))?;
        let req = ApiRequest::new(method, biz);
        let resp = self.http_client.execute_request(&req).await?;
        let raw = match resp.data {
            None | Some(Value::Null) => return Ok(vec![]),
            Some(v) => v,
        };
        // 先尝试 list
        if let Ok(list) = serde_json::from_value::<Vec<T>>(raw.clone()) {
            return Ok(list);
        }
        // 若为字符串则先解一层
        let inner = if let Value::String(s) = &raw {
            serde_json::from_str::<Value>(s)
                .map_err(|e| TigerError::Config(format!("decode double-encoded data: {}", e)))?
        } else {
            raw
        };
        // 尝试 object -> 包装成 [object]
        let obj: T = serde_json::from_value(inner)
            .map_err(|e| TigerError::Config(format!("decode single object failed: {}", e)))?;
        Ok(vec![obj])
    }

    // ========== 基础行情 ==========

    /// 获取市场状态
    pub async fn get_market_state(&self, market: &str) -> Result<Vec<MarketState>, TigerError> {
        self.call_into("market_state", serde_json::json!({ "market": market })).await
    }

    /// 获取实时快照(v0.4.0 新签名:接受 BriefRequest)。wire: quote_real_time
    pub async fn get_brief(&self, req: BriefRequest) -> Result<Vec<Brief>, TigerError> {
        self.call_into("quote_real_time", req).await
    }

    /// 获取 K 线(一个标的一组)
    pub async fn get_kline(&self, symbol: &str, period: &str) -> Result<Vec<Kline>, TigerError> {
        self.call_into("kline", serde_json::json!({ "symbols": [symbol], "period": period })).await
    }

    /// 获取分时数据(v3.0)
    pub async fn get_timeline(&self, symbols: &[&str]) -> Result<Vec<Timeline>, TigerError> {
        self.call_into_versioned(
            "timeline",
            serde_json::json!({ "symbols": symbols }),
            Some(VERSION_V3),
        )
        .await
    }

    /// 获取逐笔成交(v0.4.0 新签名:接受 TradeTickRequest)。wire: trade_tick
    pub async fn get_trade_tick(&self, req: TradeTickRequest) -> Result<Vec<TradeTick>, TigerError> {
        self.call_into("trade_tick", req).await
    }

    /// 获取深度报价(v0.4.0 新签名:接受 DepthQuoteRequest)。wire: quote_depth
    pub async fn get_quote_depth(&self, req: DepthQuoteRequest) -> Result<Vec<Depth>, TigerError> {
        self.call_into("quote_depth", req).await
    }

    // ========== 股票基础查询 ==========

    /// 全量合约代码。wire: all_symbols(返回字符串列表)
    pub async fn get_symbols(&self, req: SymbolsRequest) -> Result<Vec<String>, TigerError> {
        self.call_into("all_symbols", req).await
    }

    /// 全量合约代码 + 名称。wire: all_symbol_names
    pub async fn get_symbol_names(&self, req: SymbolsRequest) -> Result<Vec<SymbolName>, TigerError> {
        self.call_into("all_symbol_names", req).await
    }

    /// 交易元数据。wire: quote_stock_trade
    pub async fn get_trade_metas(&self, req: TradeMetasRequest) -> Result<Vec<crate::model::quote::TradeMeta>, TigerError> {
        self.call_into("quote_stock_trade", req).await
    }

    /// 股票详情。wire: stock_detail(服务端返回 {items:[...]})
    pub async fn get_stock_details(&self, req: StockDetailsRequest) -> Result<Vec<StockDetail>, TigerError> {
        self.call_into_items("stock_detail", req).await
    }

    /// 延时行情。wire: quote_delay
    pub async fn get_stock_delay_briefs(&self, req: StockDelayBriefsRequest) -> Result<Vec<Brief>, TigerError> {
        self.call_into("quote_delay", req).await
    }

    /// K 线(完整参数版)。wire: kline
    pub async fn get_bars(&self, req: BarsRequest) -> Result<Vec<Kline>, TigerError> {
        self.call_into("kline", req).await
    }

    /// 客户端分页 K 线。循环调用直到获得 total_size 条。
    pub async fn get_bars_by_page(&self, req: BarsByPageRequest) -> Result<Vec<KlineItem>, TigerError> {
        let page_size = req.page_size.unwrap_or(200);
        let total_size = req.total_size.unwrap_or(1000);
        let mut acc: Vec<KlineItem> = Vec::new();
        let mut end_time = req.end_time;
        let begin_time = req.begin_time;

        while (acc.len() as i32) < total_size {
            let sub = BarsRequest {
                symbols: req.symbol.clone().map(|s| vec![s]),
                period: req.period.clone(),
                right: req.right.clone(),
                begin_time,
                end_time,
                limit: Some(page_size),
                trade_session: req.trade_session.clone(),
                lang: req.lang.clone(),
                ..Default::default()
            };
            let page_out: Vec<Kline> = self.call_into("kline", sub).await?;
            if page_out.is_empty() || page_out[0].items.is_empty() {
                break;
            }
            let items = page_out[0].items.clone();
            let len = items.len() as i32;
            acc.extend(items.clone());
            if len < page_size {
                break;
            }
            // 以最早 bar 的时间 - 1 作为下一页 end_time
            let oldest = items.iter().map(|i| i.time).min().unwrap_or(0);
            end_time = Some(oldest - 1);
        }
        Ok(acc)
    }

    /// 历史分时。wire: history_timeline
    pub async fn get_timeline_history(&self, req: TimelineHistoryRequest) -> Result<Vec<Timeline>, TigerError> {
        self.call_into("history_timeline", req).await
    }

    /// 成交榜单。wire: trade_rank
    pub async fn get_trade_rank(&self, req: TradeRankRequest) -> Result<Vec<TradeRankItem>, TigerError> {
        self.call_into("trade_rank", req).await
    }

    /// 做空数据。wire: quote_shortable_stocks
    pub async fn get_short_interest(&self, req: ShortInterestRequest) -> Result<Vec<ShortInterest>, TigerError> {
        self.call_into("quote_shortable_stocks", req).await
    }

    /// 经纪商持仓。wire: stock_broker
    pub async fn get_stock_broker(&self, req: StockBrokerRequest) -> Result<Option<StockBroker>, TigerError> {
        self.call_optional("stock_broker", req).await
    }

    /// 股票基本面。wire: stock_fundamental(返回 map,由调用方解析)
    pub async fn get_stock_fundamental(
        &self,
        req: StockFundamentalRequest,
    ) -> Result<std::collections::BTreeMap<String, serde_json::Value>, TigerError> {
        self.call_into("stock_fundamental", req).await
    }

    /// 股票行业归属。wire: stock_industry(返回数组)
    pub async fn get_stock_industry(&self, req: StockIndustryRequest) -> Result<Vec<StockIndustry>, TigerError> {
        self.call_into("stock_industry", req).await
    }

    /// 行情权限详情。wire: get_quote_permission
    pub async fn get_quote_permission(&self, req: QuotePermissionRequest) -> Result<Vec<QuotePermission>, TigerError> {
        self.call_into("get_quote_permission", req).await
    }

    /// K 线配额。wire: kline_quota
    pub async fn get_kline_quota(&self, req: KlineQuotaRequest) -> Result<Vec<KlineQuota>, TigerError> {
        self.call_into("kline_quota", req).await
    }

    // ========== 期权行情 ==========

    /// 获取期权到期日
    pub async fn get_option_expiration(&self, symbol: &str) -> Result<Vec<OptionExpiration>, TigerError> {
        self.call_into(
            "option_expiration",
            serde_json::json!({ "symbols": [symbol] }),
        )
        .await
    }

    /// 获取期权链(v3.0)。`expiry` 格式为 "YYYY-MM-DD",内部转为毫秒时间戳。
    pub async fn get_option_chain(
        &self,
        symbol: &str,
        expiry: &str,
    ) -> Result<Vec<OptionChain>, TigerError> {
        let expiry_ts = parse_expiry_to_ms(expiry)?;
        let params = serde_json::json!({
            "option_basic": [{ "symbol": symbol, "expiry": expiry_ts }]
        });
        self.call_into_versioned("option_chain", params, Some(VERSION_V3)).await
    }

    /// 获取期权快照(v2.0)。`identifiers` 为 OCC 格式(如 "AAPL 240119C00150000")。
    pub async fn get_option_brief(
        &self,
        identifiers: &[&str],
    ) -> Result<Vec<OptionBrief>, TigerError> {
        let mut option_basics: Vec<serde_json::Value> = Vec::with_capacity(identifiers.len());
        for id in identifiers {
            let contract = parse_option_identifier(id)?;
            option_basics.push(serde_json::json!({
                "symbol": contract.symbol,
                "expiry": contract.expiry,
                "right": contract.right,
                "strike": contract.strike,
            }));
        }
        let params = serde_json::json!({ "option_basic": option_basics });
        self.call_into_versioned("option_brief", params, Some(VERSION_V2)).await
    }

    /// 获取期权 K 线(v2.0)。
    pub async fn get_option_kline(
        &self,
        identifier: &str,
        period: &str,
    ) -> Result<Vec<OptionKline>, TigerError> {
        let contract = parse_option_identifier(identifier)?;
        let params = serde_json::json!({
            "option_query": [{
                "symbol": contract.symbol,
                "expiry": contract.expiry,
                "right": contract.right,
                "strike": contract.strike,
                "period": period,
            }]
        });
        self.call_into_versioned("option_kline", params, Some(VERSION_V2)).await
    }

    /// 期权 K 线(完整参数版)。wire: option_kline (v2.0)
    pub async fn get_option_bars(&self, req: OptionBarsRequest) -> Result<Vec<Kline>, TigerError> {
        self.call_into_versioned("option_kline", req, Some(VERSION_V2)).await
    }

    /// 期权逐笔。wire: option_trade_tick
    pub async fn get_option_trade_ticks(&self, req: OptionTradeTicksRequest) -> Result<Vec<TradeTick>, TigerError> {
        self.call_into("option_trade_tick", req).await
    }

    /// 期权分时。wire: option_timeline
    pub async fn get_option_timeline(&self, req: OptionTimelineRequest) -> Result<Vec<Timeline>, TigerError> {
        self.call_into("option_timeline", req).await
    }

    /// 期权盘口。wire: option_depth
    pub async fn get_option_depth(&self, req: OptionDepthRequest) -> Result<Vec<Depth>, TigerError> {
        self.call_into("option_depth", req).await
    }

    /// 期权代码列表。wire: option_symbol
    pub async fn get_option_symbols(&self, req: OptionSymbolsRequest) -> Result<Vec<OptionSymbol>, TigerError> {
        self.call_into("option_symbol", req).await
    }

    /// 期权分析(隐含/历史波动率)。wire: option_analysis
    pub async fn get_option_analysis(&self, req: OptionAnalysisRequest) -> Result<Vec<OptionAnalysis>, TigerError> {
        self.call_into("option_analysis", req).await
    }

    // ========== 期货行情 ==========

    /// 获取期货交易所列表
    pub async fn get_future_exchange(&self) -> Result<Vec<FutureExchange>, TigerError> {
        self.call_into("future_exchange", serde_json::json!({ "sec_type": "FUT" })).await
    }

    /// 获取期货合约列表(by exchange code)
    pub async fn get_future_contracts(
        &self,
        exchange_code: &str,
    ) -> Result<Vec<FutureContractInfo>, TigerError> {
        self.call_into(
            "future_contract_by_exchange_code",
            serde_json::json!({ "exchange_code": exchange_code }),
        )
        .await
    }

    /// 获取期货实时报价(v0.4.0 新签名:接受 FutureBriefRequest)。wire: future_real_time_quote
    pub async fn get_future_real_time_quote(&self, req: FutureBriefRequest) -> Result<Vec<FutureQuote>, TigerError> {
        self.call_into("future_real_time_quote", req).await
    }

    /// 获取期货 K 线(老接口,兼容)
    pub async fn get_future_kline(
        &self,
        mut req: FutureKlineRequest,
    ) -> Result<Vec<FutureKline>, TigerError> {
        if req.begin_time == 0 {
            req.begin_time = -1;
        }
        if req.end_time == 0 {
            req.end_time = -1;
        }
        self.call_into("future_kline", req).await
    }

    /// 按 contract_code 查询单个期货合约。wire: future_contract_by_contract_code
    /// 服务端可能返回单对象或列表,统一展开为 Vec。
    pub async fn get_future_contract(&self, req: FutureContractSingleRequest) -> Result<Vec<FutureContractInfo>, TigerError> {
        self.call_into_list_or_object("future_contract_by_contract_code", req).await
    }

    /// 查询所有期货合约。wire: future_contracts
    pub async fn get_all_future_contracts(&self, req: AllFutureContractsRequest) -> Result<Vec<FutureContractInfo>, TigerError> {
        self.call_into("future_contracts", req).await
    }

    /// 当前主力合约。wire: future_current_contract
    pub async fn get_current_future_contract(&self, req: FutureContractSingleRequest) -> Result<Option<FutureContractInfo>, TigerError> {
        self.call_optional("future_current_contract", req).await
    }

    /// 连续主力合约。wire: future_continuous_contracts
    /// 服务端可能返回单对象或列表,统一展开为 Vec。
    pub async fn get_future_continuous_contracts(&self, req: FutureContinuousContractsRequest) -> Result<Vec<FutureContractInfo>, TigerError> {
        self.call_into_list_or_object("future_continuous_contracts", req).await
    }

    /// 主力合约历史。wire: future_main_contract
    pub async fn get_future_history_main_contract(&self, req: FutureHistoryMainContractRequest) -> Result<Vec<FutureMainContractHistory>, TigerError> {
        self.call_into("future_main_contract", req).await
    }

    /// 期货 K 线(含索引分页)。wire: future_kline
    /// begin_time / end_time 为 0 时自动改为 -1(服务端要求字段必须存在)。
    pub async fn get_future_bars(&self, mut req: FutureBarsRequest) -> Result<Vec<FutureKline>, TigerError> {
        if req.begin_time == Some(0) {
            req.begin_time = Some(-1);
        }
        if req.end_time == Some(0) {
            req.end_time = Some(-1);
        }
        self.call_into("future_kline", req).await
    }

    /// 期货 K 线分页包装。
    pub async fn get_future_bars_by_page(&self, req: FutureBarsByPageRequest) -> Result<Vec<FutureKlineItem>, TigerError> {
        let page_size = req.page_size.unwrap_or(200);
        let total_size = req.total_size.unwrap_or(1000);
        let mut acc: Vec<FutureKlineItem> = Vec::new();
        let mut end_time = if req.end_time == Some(0) || req.end_time.is_none() {
            Some(-1i64)
        } else {
            req.end_time
        };
        let begin_time = if req.begin_time == Some(0) || req.begin_time.is_none() {
            Some(-1i64)
        } else {
            req.begin_time
        };

        while (acc.len() as i32) < total_size {
            let sub = FutureBarsRequest {
                contract_code: req.contract_code.clone(),
                period: req.period.clone(),
                begin_time,
                end_time,
                limit: Some(page_size),
                lang: req.lang.clone(),
                ..Default::default()
            };
            let page_out: Vec<FutureKline> = self.call_into("future_kline", sub).await?;
            if page_out.is_empty() || page_out[0].items.is_empty() {
                break;
            }
            let items = page_out[0].items.clone();
            let len = items.len() as i32;
            acc.extend(items.clone());
            if len < page_size {
                break;
            }
            let oldest = items.iter().map(|i| i.time).min().unwrap_or(0);
            end_time = Some(oldest - 1);
        }
        Ok(acc)
    }

    /// 期货逐笔。wire: future_tick (API version 3.0)
    /// 服务端返回 {contractCode, items:[...]} 对象,需解包 items 并回填 contractCode。
    pub async fn get_future_trade_ticks(&self, req: FutureTradeTicksRequest) -> Result<Vec<FutureTradeTickItem>, TigerError> {
        let mut req = req;
        // end_index 服务端要求 >= 0;未设置时默认 30(与 Python/Go SDK 一致)
        if req.end_index.is_none() {
            req.end_index = Some(30);
        }
        #[derive(serde::Deserialize, Default)]
        #[serde(rename_all = "camelCase")]
        struct FutureTickWrap {
            #[serde(default)]
            contract_code: String,
            #[serde(default)]
            items: Vec<FutureTradeTickItem>,
        }
        let wrap: FutureTickWrap = self.call_into_versioned("future_tick", req, Some(VERSION_V3)).await?;
        let mut items = wrap.items;
        for item in &mut items {
            if item.contract_code.is_empty() {
                item.contract_code = wrap.contract_code.clone();
            }
        }
        Ok(items)
    }

    /// 期货盘口。wire: future_depth
    pub async fn get_future_depth(&self, req: FutureDepthRequest) -> Result<Vec<FutureDepth>, TigerError> {
        self.call_into("future_depth", req).await
    }

    /// 期货交易时段。wire: future_trading_date(返回单个对象)
    pub async fn get_future_trading_times(&self, req: FutureTradingTimesRequest) -> Result<Option<FutureTradingTime>, TigerError> {
        self.call_optional("future_trading_date", req).await
    }

    // ========== 基金 ==========

    /// 基金代码列表。wire: fund_all_symbols(返回字符串列表)
    pub async fn get_fund_symbols(&self, req: FundSymbolsRequest) -> Result<Vec<String>, TigerError> {
        self.call_into("fund_all_symbols", req).await
    }

    /// 基金合约信息。wire: fund_contracts
    pub async fn get_fund_contracts(&self, req: FundContractsRequest) -> Result<Vec<FundContractInfo>, TigerError> {
        self.call_into("fund_contracts", req).await
    }

    /// 基金实时净值。wire: fund_quote
    pub async fn get_fund_quote(&self, req: FundQuoteRequest) -> Result<Vec<FundQuote>, TigerError> {
        self.call_into("fund_quote", req).await
    }

    /// 基金历史净值。wire: fund_history_quote
    pub async fn get_fund_history_quote(&self, req: FundHistoryQuoteRequest) -> Result<Vec<FundHistoryQuote>, TigerError> {
        self.call_into("fund_history_quote", req).await
    }

    // ========== 窝轮 ==========

    /// 窝轮简要行情。wire: warrant_briefs
    pub async fn get_warrant_briefs(&self, req: WarrantBriefsRequest) -> Result<Vec<WarrantBrief>, TigerError> {
        self.call_into("warrant_briefs", req).await
    }

    /// 窝轮筛选。wire: warrant_filter
    pub async fn get_warrant_filter(&self, req: WarrantFilterRequest) -> Result<Option<WarrantFilterResult>, TigerError> {
        self.call_optional("warrant_filter", req).await
    }

    // ========== 行业 ==========

    /// 行业列表。wire: industry_list
    pub async fn get_industry_list(&self, req: IndustryListRequest) -> Result<Vec<IndustryItem>, TigerError> {
        self.call_into("industry_list", req).await
    }

    /// 行业下股票列表。wire: industry_stock_list
    pub async fn get_industry_stocks(&self, req: IndustryStocksRequest) -> Result<Vec<IndustryStock>, TigerError> {
        self.call_into("industry_stock_list", req).await
    }

    // ========== 公司行动 ==========

    /// 获取公司行动。服务端返回 `{symbol: [...]}` 结构,内部扁平化为单个数组。
    pub async fn get_corporate_action(
        &self,
        req: CorporateActionRequest,
    ) -> Result<Vec<CorporateAction>, TigerError> {
        let grouped: std::collections::BTreeMap<String, Vec<CorporateAction>> =
            self.call_into("corporate_action", req).await?;
        let mut out = Vec::new();
        for (_, mut list) in grouped {
            out.append(&mut list);
        }
        Ok(out)
    }

    /// 公司行动 - 拆股。wire: corporate_action (action_type=split)
    pub async fn get_corporate_split(
        &self,
        mut req: CorporateActionRequest,
    ) -> Result<Vec<CorporateAction>, TigerError> {
        req.action_type = "split".into();
        self.get_corporate_action(req).await
    }

    /// 公司行动 - 分红。wire: corporate_action (action_type=dividend)
    pub async fn get_corporate_dividend(
        &self,
        mut req: CorporateActionRequest,
    ) -> Result<Vec<CorporateAction>, TigerError> {
        req.action_type = "dividend".into();
        self.get_corporate_action(req).await
    }

    /// 公司行动 - 财报日历。wire: corporate_action (action_type=earning)
    pub async fn get_corporate_earnings_calendar(
        &self,
        mut req: CorporateActionRequest,
    ) -> Result<Vec<CorporateAction>, TigerError> {
        req.action_type = "earning".into();
        self.get_corporate_action(req).await
    }

    // ========== 财务 / 日历 ==========

    /// 获取日级财务数据
    pub async fn get_financial_daily(
        &self,
        req: FinancialDailyRequest,
    ) -> Result<Vec<FinancialDailyItem>, TigerError> {
        self.call_into("financial_daily", req).await
    }

    /// 获取财报数据
    pub async fn get_financial_report(
        &self,
        req: FinancialReportRequest,
    ) -> Result<Vec<FinancialReportItem>, TigerError> {
        self.call_into("financial_report", req).await
    }

    /// 财报币种。wire: financial_currency
    pub async fn get_financial_currency(&self, req: FinancialCurrencyRequest) -> Result<Vec<FinancialCurrency>, TigerError> {
        self.call_into("financial_currency", req).await
    }

    /// 汇率数据。wire: financial_exchange_rate
    pub async fn get_financial_exchange_rate(&self, req: FinancialExchangeRateRequest) -> Result<Vec<ExchangeRate>, TigerError> {
        self.call_into("financial_exchange_rate", req).await
    }

    /// 交易日历。wire: trading_calendar
    pub async fn get_trading_calendar(&self, req: TradingCalendarRequest) -> Result<Vec<TradingCalendarItem>, TigerError> {
        self.call_into("trading_calendar", req).await
    }

    // ========== 资金流向 ==========

    /// 获取资金流向
    pub async fn get_capital_flow(
        &self,
        symbol: &str,
        market: &str,
        period: &str,
    ) -> Result<Option<CapitalFlow>, TigerError> {
        self.call_optional(
            "capital_flow",
            serde_json::json!({ "symbol": symbol, "market": market, "period": period }),
        )
        .await
    }

    /// 获取资金分布
    pub async fn get_capital_distribution(
        &self,
        symbol: &str,
        market: &str,
    ) -> Result<Option<CapitalDistribution>, TigerError> {
        self.call_optional(
            "capital_distribution",
            serde_json::json!({ "symbol": symbol, "market": market }),
        )
        .await
    }

    // ========== 扫描 / 权限 / 其他 ==========

    /// 选股扫描(v1.0)
    pub async fn market_scanner(
        &self,
        req: MarketScannerRequest,
    ) -> Result<Option<ScannerResult>, TigerError> {
        self.call_optional_versioned("market_scanner", req, Some(VERSION_V1)).await
    }

    /// 获取行情权限(老接口)
    pub async fn grab_quote_permission(&self) -> Result<Vec<QuotePermission>, TigerError> {
        self.call_into("grab_quote_permission", serde_json::json!({})).await
    }

    /// 扫描器可用标签。wire: market_scanner_tags
    pub async fn get_market_scanner_tags(&self, req: MarketScannerTagsRequest) -> Result<Option<MarketScannerTags>, TigerError> {
        self.call_optional("market_scanner_tags", req).await
    }

    /// 隔夜行情。wire: quote_overnight
    pub async fn get_quote_overnight(&self, req: QuoteOvernightRequest) -> Result<Vec<QuoteOvernight>, TigerError> {
        self.call_into("quote_overnight", req).await
    }

    // ========== 内部辅助 ==========

    async fn call_optional<T, P>(&self, method: &str, params: P) -> Result<Option<T>, TigerError>
    where
        T: serde::de::DeserializeOwned,
        P: Serialize,
    {
        self.call_optional_versioned(method, params, None).await
    }

    async fn call_optional_versioned<T, P>(
        &self,
        method: &str,
        params: P,
        version: Option<&str>,
    ) -> Result<Option<T>, TigerError>
    where
        T: serde::de::DeserializeOwned,
        P: Serialize,
    {
        let biz = serde_json::to_string(&params)
            .map_err(|e| TigerError::Config(format!("serialize biz params failed: {}", e)))?;
        let req = match version {
            Some(v) => ApiRequest::with_version(method, biz, v),
            None => ApiRequest::new(method, biz),
        };
        let resp = self.http_client.execute_request(&req).await?;
        match resp.data {
            None => Ok(None),
            Some(v) if v.is_null() => Ok(None),
            Some(v) => {
                let parsed: T = decode_value(v)?;
                Ok(Some(parsed))
            }
        }
    }
}

/// 把 `data` 字段解码为目标类型 T,兼容服务端偶发双重编码(字符串包 JSON)。
/// 当 data 为 None / Null 时返回 T::default()。
fn unmarshal_data<T>(data: Option<Value>) -> Result<T, TigerError>
where
    T: serde::de::DeserializeOwned + Default,
{
    match data {
        None => Ok(T::default()),
        Some(v) if v.is_null() => Ok(T::default()),
        Some(v) => decode_value(v),
    }
}


// ========== 期权 identifier 辅助 ==========

struct OptionContract {
    symbol: String,
    /// 毫秒时间戳
    expiry: i64,
    /// "CALL" 或 "PUT"
    right: String,
    strike: f64,
}

/// 解析 "YYYY-MM-DD" 为 UTC 毫秒时间戳
fn parse_expiry_to_ms(expiry: &str) -> Result<i64, TigerError> {
    use chrono::NaiveDate;
    let d = NaiveDate::parse_from_str(expiry, "%Y-%m-%d")
        .map_err(|e| TigerError::Config(format!("invalid expiry {:?}: expected YYYY-MM-DD: {}", expiry, e)))?;
    let dt = d
        .and_hms_opt(0, 0, 0)
        .ok_or_else(|| TigerError::Config(format!("invalid expiry date: {:?}", expiry)))?;
    let utc = dt.and_utc();
    Ok(utc.timestamp_millis())
}

/// 解析 OCC 期权 identifier("AAPL 240119C00150000")
fn parse_option_identifier(identifier: &str) -> Result<OptionContract, TigerError> {
    let trimmed = identifier.trim();
    let mut it = trimmed.splitn(2, ' ');
    let symbol = it
        .next()
        .filter(|s| !s.is_empty())
        .ok_or_else(|| TigerError::Config(format!("invalid option identifier: {:?}", identifier)))?
        .to_string();
    let rest = it
        .next()
        .map(str::trim)
        .ok_or_else(|| TigerError::Config(format!("invalid option identifier: {:?}", identifier)))?;

    if rest.len() < 15 {
        return Err(TigerError::Config(format!("option code too short: {:?}", rest)));
    }

    let date_str = &rest[..6];
    let date = chrono::NaiveDate::parse_from_str(date_str, "%y%m%d")
        .map_err(|_| TigerError::Config(format!("invalid date in identifier: {:?}", date_str)))?;
    let expiry = date
        .and_hms_opt(0, 0, 0)
        .ok_or_else(|| TigerError::Config("invalid date".into()))?
        .and_utc()
        .timestamp_millis();

    let right_char = rest.as_bytes()[6];
    let right = match right_char {
        b'C' => "CALL",
        b'P' => "PUT",
        other => {
            return Err(TigerError::Config(format!(
                "invalid right character: {:?}",
                other as char
            )));
        }
    }
    .to_string();

    let strike_str = &rest[7..];
    let mut strike_int: i64 = 0;
    for c in strike_str.chars() {
        if !c.is_ascii_digit() {
            return Err(TigerError::Config(format!("invalid strike digits: {:?}", strike_str)));
        }
        strike_int = strike_int * 10 + (c as i64 - '0' as i64);
    }
    let strike = strike_int as f64 / 1000.0;

    Ok(OptionContract {
        symbol,
        expiry,
        right,
        strike,
    })
}

#[cfg(test)]
mod tests;