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
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityRequest {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MultiSecurityRequest {
#[prost(string, repeated, tag="1")]
pub symbol: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityStaticInfoResponse {
#[prost(message, repeated, tag="1")]
pub secu_static_info: ::prost::alloc::vec::Vec<StaticInfo>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StaticInfo {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
#[prost(string, tag="2")]
pub name_cn: ::prost::alloc::string::String,
#[prost(string, tag="3")]
pub name_en: ::prost::alloc::string::String,
#[prost(string, tag="4")]
pub name_hk: ::prost::alloc::string::String,
#[prost(string, tag="5")]
pub listing_date: ::prost::alloc::string::String,
#[prost(string, tag="6")]
pub exchange: ::prost::alloc::string::String,
#[prost(string, tag="7")]
pub currency: ::prost::alloc::string::String,
#[prost(int32, tag="8")]
pub lot_size: i32,
#[prost(int64, tag="9")]
pub total_shares: i64,
#[prost(int64, tag="10")]
pub circulating_shares: i64,
#[prost(int64, tag="11")]
pub hk_shares: i64,
#[prost(string, tag="12")]
pub eps: ::prost::alloc::string::String,
#[prost(string, tag="13")]
pub eps_ttm: ::prost::alloc::string::String,
#[prost(string, tag="14")]
pub bps: ::prost::alloc::string::String,
#[prost(string, tag="15")]
pub dividend_yield: ::prost::alloc::string::String,
#[prost(int32, repeated, tag="16")]
pub stock_derivatives: ::prost::alloc::vec::Vec<i32>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityQuoteResponse {
#[prost(message, repeated, tag="1")]
pub secu_quote: ::prost::alloc::vec::Vec<SecurityQuote>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityQuote {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
#[prost(string, tag="2")]
pub last_done: ::prost::alloc::string::String,
#[prost(string, tag="3")]
pub prev_close: ::prost::alloc::string::String,
#[prost(string, tag="4")]
pub open: ::prost::alloc::string::String,
#[prost(string, tag="5")]
pub high: ::prost::alloc::string::String,
#[prost(string, tag="6")]
pub low: ::prost::alloc::string::String,
#[prost(int64, tag="7")]
pub timestamp: i64,
#[prost(int64, tag="8")]
pub volume: i64,
#[prost(string, tag="9")]
pub turnover: ::prost::alloc::string::String,
#[prost(enumeration="TradeStatus", tag="10")]
pub trade_status: i32,
#[prost(message, optional, tag="11")]
pub pre_market_quote: ::core::option::Option<PrePostQuote>,
#[prost(message, optional, tag="12")]
pub post_market_quote: ::core::option::Option<PrePostQuote>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PrePostQuote {
#[prost(string, tag="1")]
pub last_done: ::prost::alloc::string::String,
#[prost(int64, tag="2")]
pub timestamp: i64,
#[prost(int64, tag="3")]
pub volume: i64,
#[prost(string, tag="4")]
pub turnover: ::prost::alloc::string::String,
#[prost(string, tag="5")]
pub high: ::prost::alloc::string::String,
#[prost(string, tag="6")]
pub low: ::prost::alloc::string::String,
#[prost(string, tag="7")]
pub prev_close: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OptionQuoteResponse {
#[prost(message, repeated, tag="1")]
pub secu_quote: ::prost::alloc::vec::Vec<OptionQuote>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OptionQuote {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
#[prost(string, tag="2")]
pub last_done: ::prost::alloc::string::String,
#[prost(string, tag="3")]
pub prev_close: ::prost::alloc::string::String,
#[prost(string, tag="4")]
pub open: ::prost::alloc::string::String,
#[prost(string, tag="5")]
pub high: ::prost::alloc::string::String,
#[prost(string, tag="6")]
pub low: ::prost::alloc::string::String,
#[prost(int64, tag="7")]
pub timestamp: i64,
#[prost(int64, tag="8")]
pub volume: i64,
#[prost(string, tag="9")]
pub turnover: ::prost::alloc::string::String,
#[prost(enumeration="TradeStatus", tag="10")]
pub trade_status: i32,
#[prost(message, optional, tag="11")]
pub option_extend: ::core::option::Option<OptionExtend>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OptionExtend {
#[prost(string, tag="1")]
pub implied_volatility: ::prost::alloc::string::String,
#[prost(int64, tag="2")]
pub open_interest: i64,
#[prost(string, tag="3")]
pub expiry_date: ::prost::alloc::string::String,
#[prost(string, tag="4")]
pub strike_price: ::prost::alloc::string::String,
#[prost(string, tag="5")]
pub contract_multiplier: ::prost::alloc::string::String,
#[prost(string, tag="6")]
pub contract_type: ::prost::alloc::string::String,
#[prost(string, tag="7")]
pub contract_size: ::prost::alloc::string::String,
#[prost(string, tag="8")]
pub direction: ::prost::alloc::string::String,
#[prost(string, tag="9")]
pub historical_volatility: ::prost::alloc::string::String,
#[prost(string, tag="10")]
pub underlying_symbol: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct WarrantQuoteResponse {
#[prost(message, repeated, tag="2")]
pub secu_quote: ::prost::alloc::vec::Vec<WarrantQuote>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct WarrantQuote {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
#[prost(string, tag="2")]
pub last_done: ::prost::alloc::string::String,
#[prost(string, tag="3")]
pub prev_close: ::prost::alloc::string::String,
#[prost(string, tag="4")]
pub open: ::prost::alloc::string::String,
#[prost(string, tag="5")]
pub high: ::prost::alloc::string::String,
#[prost(string, tag="6")]
pub low: ::prost::alloc::string::String,
#[prost(int64, tag="7")]
pub timestamp: i64,
#[prost(int64, tag="8")]
pub volume: i64,
#[prost(string, tag="9")]
pub turnover: ::prost::alloc::string::String,
#[prost(enumeration="TradeStatus", tag="10")]
pub trade_status: i32,
#[prost(message, optional, tag="11")]
pub warrant_extend: ::core::option::Option<WarrantExtend>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct WarrantExtend {
#[prost(string, tag="1")]
pub implied_volatility: ::prost::alloc::string::String,
#[prost(string, tag="2")]
pub expiry_date: ::prost::alloc::string::String,
#[prost(string, tag="3")]
pub last_trade_date: ::prost::alloc::string::String,
#[prost(string, tag="4")]
pub outstanding_ratio: ::prost::alloc::string::String,
#[prost(int64, tag="5")]
pub outstanding_qty: i64,
#[prost(string, tag="6")]
pub conversion_ratio: ::prost::alloc::string::String,
#[prost(string, tag="7")]
pub category: ::prost::alloc::string::String,
#[prost(string, tag="8")]
pub strike_price: ::prost::alloc::string::String,
#[prost(string, tag="9")]
pub upper_strike_price: ::prost::alloc::string::String,
#[prost(string, tag="10")]
pub lower_strike_price: ::prost::alloc::string::String,
#[prost(string, tag="11")]
pub call_price: ::prost::alloc::string::String,
#[prost(string, tag="12")]
pub underlying_symbol: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityDepthResponse {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
#[prost(message, repeated, tag="2")]
pub ask: ::prost::alloc::vec::Vec<Depth>,
#[prost(message, repeated, tag="3")]
pub bid: ::prost::alloc::vec::Vec<Depth>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Depth {
#[prost(int32, tag="1")]
pub position: i32,
#[prost(string, tag="2")]
pub price: ::prost::alloc::string::String,
#[prost(int64, tag="3")]
pub volume: i64,
#[prost(int64, tag="4")]
pub order_num: i64,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityBrokersResponse {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
#[prost(message, repeated, tag="2")]
pub ask_brokers: ::prost::alloc::vec::Vec<Brokers>,
#[prost(message, repeated, tag="3")]
pub bid_brokers: ::prost::alloc::vec::Vec<Brokers>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Brokers {
#[prost(int32, tag="1")]
pub position: i32,
#[prost(int32, repeated, tag="2")]
pub broker_ids: ::prost::alloc::vec::Vec<i32>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ParticipantBrokerIdsResponse {
#[prost(message, repeated, tag="1")]
pub participant_broker_numbers: ::prost::alloc::vec::Vec<ParticipantInfo>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ParticipantInfo {
#[prost(int32, repeated, tag="1")]
pub broker_ids: ::prost::alloc::vec::Vec<i32>,
#[prost(string, tag="2")]
pub participant_name_cn: ::prost::alloc::string::String,
#[prost(string, tag="3")]
pub participant_name_en: ::prost::alloc::string::String,
#[prost(string, tag="4")]
pub participant_name_hk: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityTradeRequest {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
#[prost(int32, tag="2")]
pub count: i32,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityTradeResponse {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
#[prost(message, repeated, tag="2")]
pub trades: ::prost::alloc::vec::Vec<Trade>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Trade {
#[prost(string, tag="1")]
pub price: ::prost::alloc::string::String,
#[prost(int64, tag="2")]
pub volume: i64,
#[prost(int64, tag="3")]
pub timestamp: i64,
#[prost(string, tag="4")]
pub trade_type: ::prost::alloc::string::String,
#[prost(int32, tag="5")]
pub direction: i32,
#[prost(enumeration="TradeSession", tag="6")]
pub trade_session: i32,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityIntradayRequest {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityIntradayResponse {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
#[prost(message, repeated, tag="2")]
pub lines: ::prost::alloc::vec::Vec<Line>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Line {
#[prost(string, tag="1")]
pub price: ::prost::alloc::string::String,
#[prost(int64, tag="2")]
pub timestamp: i64,
#[prost(int64, tag="3")]
pub volume: i64,
#[prost(string, tag="4")]
pub turnover: ::prost::alloc::string::String,
#[prost(string, tag="5")]
pub avg_price: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityCandlestickRequest {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
#[prost(enumeration="Period", tag="2")]
pub period: i32,
#[prost(int32, tag="3")]
pub count: i32,
#[prost(enumeration="AdjustType", tag="4")]
pub adjust_type: i32,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityCandlestickResponse {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
#[prost(message, repeated, tag="2")]
pub candlesticks: ::prost::alloc::vec::Vec<Candlestick>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Candlestick {
#[prost(string, tag="1")]
pub close: ::prost::alloc::string::String,
#[prost(string, tag="2")]
pub open: ::prost::alloc::string::String,
#[prost(string, tag="3")]
pub low: ::prost::alloc::string::String,
#[prost(string, tag="4")]
pub high: ::prost::alloc::string::String,
#[prost(int64, tag="5")]
pub volume: i64,
#[prost(string, tag="6")]
pub turnover: ::prost::alloc::string::String,
#[prost(int64, tag="7")]
pub timestamp: i64,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OptionChainDateListResponse {
#[prost(string, repeated, tag="1")]
pub expiry_date: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OptionChainDateStrikeInfoRequest {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
#[prost(string, tag="2")]
pub expiry_date: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OptionChainDateStrikeInfoResponse {
#[prost(message, repeated, tag="1")]
pub strike_price_info: ::prost::alloc::vec::Vec<StrikePriceInfo>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StrikePriceInfo {
#[prost(string, tag="1")]
pub price: ::prost::alloc::string::String,
#[prost(string, tag="2")]
pub call_symbol: ::prost::alloc::string::String,
#[prost(string, tag="3")]
pub put_symbol: ::prost::alloc::string::String,
#[prost(bool, tag="4")]
pub standard: bool,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct IssuerInfoResponse {
#[prost(message, repeated, tag="1")]
pub issuer_info: ::prost::alloc::vec::Vec<IssuerInfo>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct IssuerInfo {
#[prost(int32, tag="1")]
pub id: i32,
#[prost(string, tag="2")]
pub name_cn: ::prost::alloc::string::String,
#[prost(string, tag="3")]
pub name_en: ::prost::alloc::string::String,
#[prost(string, tag="4")]
pub name_hk: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct WarrantFilterListRequest {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
#[prost(message, optional, tag="2")]
pub filter_config: ::core::option::Option<FilterConfig>,
#[prost(int32, tag="3")]
pub language: i32,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FilterConfig {
#[prost(int32, tag="1")]
pub sort_by: i32,
#[prost(int32, tag="2")]
pub sort_order: i32,
#[prost(int32, tag="3")]
pub sort_offset: i32,
#[prost(int32, tag="4")]
pub sort_count: i32,
#[prost(int32, repeated, tag="5")]
pub r#type: ::prost::alloc::vec::Vec<i32>,
#[prost(int32, repeated, tag="6")]
pub issuer: ::prost::alloc::vec::Vec<i32>,
#[prost(int32, repeated, tag="7")]
pub expiry_date: ::prost::alloc::vec::Vec<i32>,
#[prost(int32, repeated, tag="8")]
pub price_type: ::prost::alloc::vec::Vec<i32>,
#[prost(int32, repeated, tag="9")]
pub status: ::prost::alloc::vec::Vec<i32>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct WarrantFilterListResponse {
#[prost(message, repeated, tag="1")]
pub warrant_list: ::prost::alloc::vec::Vec<FilterWarrant>,
#[prost(int32, tag="2")]
pub total_count: i32,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FilterWarrant {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
#[prost(string, tag="2")]
pub name: ::prost::alloc::string::String,
#[prost(string, tag="3")]
pub last_done: ::prost::alloc::string::String,
#[prost(string, tag="4")]
pub change_rate: ::prost::alloc::string::String,
#[prost(string, tag="5")]
pub change_val: ::prost::alloc::string::String,
#[prost(int64, tag="6")]
pub volume: i64,
#[prost(string, tag="7")]
pub turnover: ::prost::alloc::string::String,
#[prost(string, tag="8")]
pub expiry_date: ::prost::alloc::string::String,
#[prost(string, tag="9")]
pub strike_price: ::prost::alloc::string::String,
#[prost(string, tag="10")]
pub upper_strike_price: ::prost::alloc::string::String,
#[prost(string, tag="11")]
pub lower_strike_price: ::prost::alloc::string::String,
#[prost(string, tag="12")]
pub outstanding_qty: ::prost::alloc::string::String,
#[prost(string, tag="13")]
pub outstanding_ratio: ::prost::alloc::string::String,
#[prost(string, tag="14")]
pub premium: ::prost::alloc::string::String,
#[prost(string, tag="15")]
pub itm_otm: ::prost::alloc::string::String,
#[prost(string, tag="16")]
pub implied_volatility: ::prost::alloc::string::String,
#[prost(string, tag="17")]
pub delta: ::prost::alloc::string::String,
#[prost(string, tag="18")]
pub call_price: ::prost::alloc::string::String,
#[prost(string, tag="19")]
pub to_call_price: ::prost::alloc::string::String,
#[prost(string, tag="20")]
pub effective_leverage: ::prost::alloc::string::String,
#[prost(string, tag="21")]
pub leverage_ratio: ::prost::alloc::string::String,
#[prost(string, tag="22")]
pub conversion_ratio: ::prost::alloc::string::String,
#[prost(string, tag="23")]
pub balance_point: ::prost::alloc::string::String,
#[prost(string, tag="24")]
pub state: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MarketTradePeriodResponse {
#[prost(message, repeated, tag="1")]
pub market_trade_session: ::prost::alloc::vec::Vec<MarketTradePeriod>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MarketTradePeriod {
#[prost(string, tag="1")]
pub market: ::prost::alloc::string::String,
#[prost(message, repeated, tag="2")]
pub trade_session: ::prost::alloc::vec::Vec<TradePeriod>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TradePeriod {
#[prost(int32, tag="1")]
pub beg_time: i32,
#[prost(int32, tag="2")]
pub end_time: i32,
#[prost(enumeration="TradeSession", tag="3")]
pub trade_session: i32,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SubscriptionRequest {
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SubscriptionResponse {
#[prost(message, repeated, tag="1")]
pub sub_list: ::prost::alloc::vec::Vec<SubTypeList>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SubTypeList {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
#[prost(enumeration="SubType", repeated, tag="2")]
pub sub_type: ::prost::alloc::vec::Vec<i32>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SubscribeRequest {
#[prost(string, repeated, tag="1")]
pub symbol: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
#[prost(enumeration="SubType", repeated, tag="2")]
pub sub_type: ::prost::alloc::vec::Vec<i32>,
#[prost(bool, tag="3")]
pub is_first_push: bool,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UnsubscribeRequest {
#[prost(string, repeated, tag="1")]
pub symbol: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
#[prost(enumeration="SubType", repeated, tag="2")]
pub sub_type: ::prost::alloc::vec::Vec<i32>,
#[prost(bool, tag="3")]
pub unsub_all: bool,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UnsubscribeResponse {
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PushQuote {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
#[prost(int64, tag="2")]
pub sequence: i64,
#[prost(string, tag="3")]
pub last_done: ::prost::alloc::string::String,
#[prost(string, tag="4")]
pub open: ::prost::alloc::string::String,
#[prost(string, tag="5")]
pub high: ::prost::alloc::string::String,
#[prost(string, tag="6")]
pub low: ::prost::alloc::string::String,
#[prost(int64, tag="7")]
pub timestamp: i64,
#[prost(int64, tag="8")]
pub volume: i64,
#[prost(string, tag="9")]
pub turnover: ::prost::alloc::string::String,
#[prost(enumeration="TradeStatus", tag="10")]
pub trade_status: i32,
#[prost(enumeration="TradeSession", tag="11")]
pub trade_session: i32,
#[prost(int64, tag="12")]
pub current_volume: i64,
#[prost(string, tag="13")]
pub current_turnover: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PushDepth {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
#[prost(int64, tag="2")]
pub sequence: i64,
#[prost(message, repeated, tag="3")]
pub ask: ::prost::alloc::vec::Vec<Depth>,
#[prost(message, repeated, tag="4")]
pub bid: ::prost::alloc::vec::Vec<Depth>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PushBrokers {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
#[prost(int64, tag="2")]
pub sequence: i64,
#[prost(message, repeated, tag="3")]
pub ask_brokers: ::prost::alloc::vec::Vec<Brokers>,
#[prost(message, repeated, tag="4")]
pub bid_brokers: ::prost::alloc::vec::Vec<Brokers>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PushTrade {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
#[prost(int64, tag="2")]
pub sequence: i64,
#[prost(message, repeated, tag="3")]
pub trade: ::prost::alloc::vec::Vec<Trade>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MarketTradeDayRequest {
#[prost(string, tag="1")]
pub market: ::prost::alloc::string::String,
#[prost(string, tag="2")]
pub beg_day: ::prost::alloc::string::String,
#[prost(string, tag="3")]
pub end_day: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MarketTradeDayResponse {
#[prost(string, repeated, tag="1")]
pub trade_day: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
#[prost(string, repeated, tag="2")]
pub half_trade_day: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CapitalFlowIntradayRequest {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CapitalFlowIntradayResponse {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
#[prost(message, repeated, tag="2")]
pub capital_flow_lines: ::prost::alloc::vec::Vec<capital_flow_intraday_response::CapitalFlowLine>,
}
pub mod capital_flow_intraday_response {
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CapitalFlowLine {
#[prost(string, tag="1")]
pub inflow: ::prost::alloc::string::String,
#[prost(int64, tag="2")]
pub timestamp: i64,
}
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CapitalDistributionResponse {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
#[prost(int64, tag="2")]
pub timestamp: i64,
#[prost(message, optional, tag="3")]
pub capital_in: ::core::option::Option<capital_distribution_response::CapitalDistribution>,
#[prost(message, optional, tag="4")]
pub capital_out: ::core::option::Option<capital_distribution_response::CapitalDistribution>,
}
pub mod capital_distribution_response {
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CapitalDistribution {
#[prost(string, tag="1")]
pub large: ::prost::alloc::string::String,
#[prost(string, tag="2")]
pub medium: ::prost::alloc::string::String,
#[prost(string, tag="3")]
pub small: ::prost::alloc::string::String,
}
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityCalcQuoteRequest {
#[prost(string, repeated, tag="1")]
pub symbols: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
#[prost(enumeration="CalcIndex", repeated, tag="2")]
pub calc_index: ::prost::alloc::vec::Vec<i32>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityCalcIndex {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
#[prost(string, tag="2")]
pub last_done: ::prost::alloc::string::String,
#[prost(string, tag="3")]
pub change_val: ::prost::alloc::string::String,
#[prost(string, tag="4")]
pub change_rate: ::prost::alloc::string::String,
#[prost(int64, tag="5")]
pub volume: i64,
#[prost(string, tag="6")]
pub turnover: ::prost::alloc::string::String,
#[prost(string, tag="7")]
pub ytd_change_rate: ::prost::alloc::string::String,
#[prost(string, tag="8")]
pub turnover_rate: ::prost::alloc::string::String,
#[prost(string, tag="9")]
pub total_market_value: ::prost::alloc::string::String,
#[prost(string, tag="10")]
pub capital_flow: ::prost::alloc::string::String,
#[prost(string, tag="11")]
pub amplitude: ::prost::alloc::string::String,
#[prost(string, tag="12")]
pub volume_ratio: ::prost::alloc::string::String,
#[prost(string, tag="13")]
pub pe_ttm_ratio: ::prost::alloc::string::String,
#[prost(string, tag="14")]
pub pb_ratio: ::prost::alloc::string::String,
#[prost(string, tag="15")]
pub dividend_ratio_ttm: ::prost::alloc::string::String,
#[prost(string, tag="16")]
pub five_day_change_rate: ::prost::alloc::string::String,
#[prost(string, tag="17")]
pub ten_day_change_rate: ::prost::alloc::string::String,
#[prost(string, tag="18")]
pub half_year_change_rate: ::prost::alloc::string::String,
#[prost(string, tag="19")]
pub five_minutes_change_rate: ::prost::alloc::string::String,
#[prost(string, tag="20")]
pub expiry_date: ::prost::alloc::string::String,
#[prost(string, tag="21")]
pub strike_price: ::prost::alloc::string::String,
#[prost(string, tag="22")]
pub upper_strike_price: ::prost::alloc::string::String,
#[prost(string, tag="23")]
pub lower_strike_price: ::prost::alloc::string::String,
#[prost(int64, tag="24")]
pub outstanding_qty: i64,
#[prost(string, tag="25")]
pub outstanding_ratio: ::prost::alloc::string::String,
#[prost(string, tag="26")]
pub premium: ::prost::alloc::string::String,
#[prost(string, tag="27")]
pub itm_otm: ::prost::alloc::string::String,
#[prost(string, tag="28")]
pub implied_volatility: ::prost::alloc::string::String,
#[prost(string, tag="29")]
pub warrant_delta: ::prost::alloc::string::String,
#[prost(string, tag="30")]
pub call_price: ::prost::alloc::string::String,
#[prost(string, tag="31")]
pub to_call_price: ::prost::alloc::string::String,
#[prost(string, tag="32")]
pub effective_leverage: ::prost::alloc::string::String,
#[prost(string, tag="33")]
pub leverage_ratio: ::prost::alloc::string::String,
#[prost(string, tag="34")]
pub conversion_ratio: ::prost::alloc::string::String,
#[prost(string, tag="35")]
pub balance_point: ::prost::alloc::string::String,
#[prost(int64, tag="36")]
pub open_interest: i64,
#[prost(string, tag="37")]
pub delta: ::prost::alloc::string::String,
#[prost(string, tag="38")]
pub gamma: ::prost::alloc::string::String,
#[prost(string, tag="39")]
pub theta: ::prost::alloc::string::String,
#[prost(string, tag="40")]
pub vega: ::prost::alloc::string::String,
#[prost(string, tag="41")]
pub rho: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityCalcQuoteResponse {
#[prost(message, repeated, tag="1")]
pub security_calc_index: ::prost::alloc::vec::Vec<SecurityCalcIndex>,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum Command {
UnknownCommand = 0,
HeartBeat = 1,
Auth = 2,
Reconnect = 3,
Subscription = 5,
Subscribe = 6,
Unsubscribe = 7,
QueryMarketTradePeriod = 8,
QueryMarketTradeDay = 9,
QuerySecurityStaticInfo = 10,
QuerySecurityQuote = 11,
QueryOptionQuote = 12,
QueryWarrantQuote = 13,
QueryDepth = 14,
QueryBrokers = 15,
QueryParticipantBrokerIds = 16,
QueryTrade = 17,
QueryIntraday = 18,
QueryCandlestick = 19,
QueryOptionChainDate = 20,
QueryOptionChainDateStrikeInfo = 21,
QueryWarrantIssuerInfo = 22,
QueryWarrantFilterList = 23,
QueryCapitalFlowIntraday = 24,
QueryCapitalFlowDistribution = 25,
QuerySecurityCalcIndex = 26,
PushQuoteData = 101,
PushDepthData = 102,
PushBrokersData = 103,
PushTradeData = 104,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum TradeStatus {
Normal = 0,
Halted = 1,
Delisted = 2,
Fuse = 3,
PrepareList = 4,
CodeMoved = 5,
ToBeOpened = 6,
SplitStockHalts = 7,
Expired = 8,
WarrantPrepareList = 9,
SuspendTrade = 10,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum TradeSession {
NormalTrade = 0,
PreTrade = 1,
PostTrade = 2,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum AdjustType {
NoAdjust = 0,
ForwardAdjust = 1,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum Period {
UnknownPeriod = 0,
OneMinute = 1,
FiveMinute = 5,
FifteenMinute = 15,
ThirtyMinute = 30,
SixtyMinute = 60,
Day = 1000,
Week = 2000,
Month = 3000,
Year = 4000,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum SubType {
UnknownType = 0,
Quote = 1,
Depth = 2,
Brokers = 3,
Trade = 4,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum CalcIndex {
CalcindexUnknown = 0,
CalcindexLastDone = 1,
CalcindexChangeVal = 2,
CalcindexChangeRate = 3,
CalcindexVolume = 4,
CalcindexTurnover = 5,
CalcindexYtdChangeRate = 6,
CalcindexTurnoverRate = 7,
CalcindexTotalMarketValue = 8,
CalcindexCapitalFlow = 9,
CalcindexAmplitude = 10,
CalcindexVolumeRatio = 11,
CalcindexPeTtmRatio = 12,
CalcindexPbRatio = 13,
CalcindexDividendRatioTtm = 14,
CalcindexFiveDayChangeRate = 15,
CalcindexTenDayChangeRate = 16,
CalcindexHalfYearChangeRate = 17,
CalcindexFiveMinutesChangeRate = 18,
CalcindexExpiryDate = 19,
CalcindexStrikePrice = 20,
CalcindexUpperStrikePrice = 21,
CalcindexLowerStrikePrice = 22,
CalcindexOutstandingQty = 23,
CalcindexOutstandingRatio = 24,
CalcindexPremium = 25,
CalcindexItmOtm = 26,
CalcindexImpliedVolatility = 27,
CalcindexWarrantDelta = 28,
CalcindexCallPrice = 29,
CalcindexToCallPrice = 30,
CalcindexEffectiveLeverage = 31,
CalcindexLeverageRatio = 32,
CalcindexConversionRatio = 33,
CalcindexBalancePoint = 34,
CalcindexOpenInterest = 35,
CalcindexDelta = 36,
CalcindexGamma = 37,
CalcindexTheta = 38,
CalcindexVega = 39,
CalcindexRho = 40,
}