longbridge-proto 4.0.5

Longbridge Protocol
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
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
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
// This file is @generated by prost-build.
#[derive(serde::Serialize, serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityRequest {
    #[prost(string, tag = "1")]
    pub symbol: ::prost::alloc::string::String,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MultiSecurityRequest {
    #[prost(string, repeated, tag = "1")]
    pub symbol: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityStaticInfoResponse {
    #[prost(message, repeated, tag = "1")]
    pub secu_static_info: ::prost::alloc::vec::Vec<StaticInfo>,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[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>,
    #[prost(string, tag = "17")]
    pub board: ::prost::alloc::string::String,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityQuoteResponse {
    #[prost(message, repeated, tag = "1")]
    pub secu_quote: ::prost::alloc::vec::Vec<SecurityQuote>,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[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>,
    #[prost(message, optional, tag = "13")]
    pub over_night_quote: ::core::option::Option<PrePostQuote>,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OptionQuoteResponse {
    #[prost(message, repeated, tag = "1")]
    pub secu_quote: ::prost::alloc::vec::Vec<OptionQuote>,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct WarrantQuoteResponse {
    #[prost(message, repeated, tag = "2")]
    pub secu_quote: ::prost::alloc::vec::Vec<WarrantQuote>,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ParticipantBrokerIdsResponse {
    #[prost(message, repeated, tag = "1")]
    pub participant_broker_numbers: ::prost::alloc::vec::Vec<ParticipantInfo>,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityIntradayRequest {
    #[prost(string, tag = "1")]
    pub symbol: ::prost::alloc::string::String,
    #[prost(int32, tag = "2")]
    pub trade_session: i32,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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,
    #[prost(int32, tag = "5")]
    pub trade_session: i32,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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,
    #[prost(enumeration = "TradeSession", tag = "8")]
    pub trade_session: i32,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OptionChainDateStrikeInfoResponse {
    #[prost(message, repeated, tag = "1")]
    pub strike_price_info: ::prost::alloc::vec::Vec<StrikePriceInfo>,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct IssuerInfoResponse {
    #[prost(message, repeated, tag = "1")]
    pub issuer_info: ::prost::alloc::vec::Vec<IssuerInfo>,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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(int32, tag = "24")]
    pub status: i32,
    #[prost(int32, tag = "25")]
    pub r#type: i32,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MarketTradePeriodResponse {
    #[prost(message, repeated, tag = "1")]
    pub market_trade_session: ::prost::alloc::vec::Vec<MarketTradePeriod>,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[derive(Clone, Copy, 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(serde::Serialize, serde::Deserialize)]
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct SubscriptionRequest {}
#[derive(serde::Serialize, serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SubscriptionResponse {
    #[prost(message, repeated, tag = "1")]
    pub sub_list: ::prost::alloc::vec::Vec<SubTypeList>,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct UnsubscribeResponse {}
#[derive(serde::Serialize, serde::Deserialize)]
#[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,
    #[prost(enumeration = "PushQuoteTag", tag = "14")]
    pub tag: i32,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CapitalFlowIntradayRequest {
    #[prost(string, tag = "1")]
    pub symbol: ::prost::alloc::string::String,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[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,
    >,
}
/// Nested message and enum types in `CapitalFlowIntradayResponse`.
pub mod capital_flow_intraday_response {
    #[derive(serde::Serialize, serde::Deserialize)]
    #[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(serde::Serialize, serde::Deserialize)]
#[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,
    >,
}
/// Nested message and enum types in `CapitalDistributionResponse`.
pub mod capital_distribution_response {
    #[derive(serde::Serialize, serde::Deserialize)]
    #[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(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[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(serde::Serialize, serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityCalcQuoteResponse {
    #[prost(message, repeated, tag = "1")]
    pub security_calc_index: ::prost::alloc::vec::Vec<SecurityCalcIndex>,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityHistoryCandlestickRequest {
    #[prost(string, tag = "1")]
    pub symbol: ::prost::alloc::string::String,
    #[prost(enumeration = "Period", tag = "2")]
    pub period: i32,
    #[prost(enumeration = "AdjustType", tag = "3")]
    pub adjust_type: i32,
    #[prost(enumeration = "HistoryCandlestickQueryType", tag = "4")]
    pub query_type: i32,
    #[prost(message, optional, tag = "5")]
    pub offset_request: ::core::option::Option<
        security_history_candlestick_request::OffsetQuery,
    >,
    #[prost(message, optional, tag = "6")]
    pub date_request: ::core::option::Option<
        security_history_candlestick_request::DateQuery,
    >,
    #[prost(int32, tag = "7")]
    pub trade_session: i32,
}
/// Nested message and enum types in `SecurityHistoryCandlestickRequest`.
pub mod security_history_candlestick_request {
    #[derive(serde::Serialize, serde::Deserialize)]
    #[derive(Clone, PartialEq, ::prost::Message)]
    pub struct OffsetQuery {
        #[prost(enumeration = "super::Direction", tag = "1")]
        pub direction: i32,
        #[prost(string, tag = "2")]
        pub date: ::prost::alloc::string::String,
        #[prost(string, tag = "3")]
        pub minute: ::prost::alloc::string::String,
        #[prost(int32, tag = "4")]
        pub count: i32,
    }
    #[derive(serde::Serialize, serde::Deserialize)]
    #[derive(Clone, PartialEq, ::prost::Message)]
    pub struct DateQuery {
        #[prost(string, tag = "1")]
        pub start_date: ::prost::alloc::string::String,
        #[prost(string, tag = "2")]
        pub end_date: ::prost::alloc::string::String,
    }
}
#[derive(serde::Serialize, serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UserQuoteProfileRequest {
    #[prost(string, tag = "1")]
    pub language: ::prost::alloc::string::String,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct RateLimit {
    #[prost(enumeration = "Command", tag = "1")]
    pub command: i32,
    #[prost(int32, tag = "2")]
    pub limit: i32,
    #[prost(int32, tag = "3")]
    pub burst: i32,
}
#[derive(serde::Serialize, serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UserQuoteLevelDetail {
    /// 按行情包描述
    #[prost(map = "string, message", tag = "1")]
    pub by_package_key: ::std::collections::HashMap<
        ::prost::alloc::string::String,
        user_quote_level_detail::PackageDetail,
    >,
    /// 按市场描述, 目前写死的, 仅有 US HK CN USOption(期权) 4个
    #[prost(map = "string, message", tag = "2")]
    pub by_market_code: ::std::collections::HashMap<
        ::prost::alloc::string::String,
        user_quote_level_detail::MarketPackageDetail,
    >,
}
/// Nested message and enum types in `UserQuoteLevelDetail`.
pub mod user_quote_level_detail {
    #[derive(serde::Serialize, serde::Deserialize)]
    #[derive(Clone, PartialEq, ::prost::Message)]
    pub struct PackageDetail {
        /// 行情包 Key
        #[prost(string, tag = "1")]
        pub key: ::prost::alloc::string::String,
        /// 行情包名称
        #[prost(string, tag = "2")]
        pub name: ::prost::alloc::string::String,
        /// 行情包描述, 根据入参 lang 适配多语言
        #[prost(string, tag = "4")]
        pub description: ::prost::alloc::string::String,
        /// 行情包生效开始时间 Unix 时间戳
        #[prost(int64, tag = "5")]
        pub start: i64,
        /// 行情包生效结束时间 Unix 时间戳
        #[prost(int64, tag = "6")]
        pub end: i64,
    }
    #[derive(serde::Serialize, serde::Deserialize)]
    #[derive(Clone, PartialEq, ::prost::Message)]
    pub struct MarketPackageDetail {
        #[prost(message, repeated, tag = "1")]
        pub packages: ::prost::alloc::vec::Vec<PackageDetail>,
        /// 当一个包也没有时, 会有如下, 多语言的文案
        /// `您没有访问该市场 Open API 行情的权限,如需请前往行情商店购买`
        #[prost(string, tag = "4")]
        pub warning_msg: ::prost::alloc::string::String,
    }
}
#[derive(serde::Serialize, serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UserQuoteProfileResponse {
    #[prost(int64, tag = "1")]
    pub member_id: i64,
    /// 行情权限信息
    #[prost(string, tag = "2")]
    pub quote_level: ::prost::alloc::string::String,
    /// 订阅数量限制
    #[prost(int32, tag = "3")]
    pub subscribe_limit: i32,
    /// 历史 k 线限制
    #[prost(int32, tag = "4")]
    pub history_candlestick_limit: i32,
    /// command rate limit
    #[prost(message, repeated, tag = "5")]
    pub rate_limit: ::prost::alloc::vec::Vec<RateLimit>,
    /// 用户等级详情
    #[prost(message, optional, tag = "6")]
    pub quote_level_detail: ::core::option::Option<UserQuoteLevelDetail>,
}
/// 协议指令定义
#[derive(serde::Serialize, serde::Deserialize)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum Command {
    UnknownCommand = 0,
    /// 心跳
    HeartBeat = 1,
    /// 鉴权
    Auth = 2,
    /// 重新连接
    Reconnect = 3,
    /// 查询用户行情信息
    QueryUserQuoteProfile = 4,
    /// 查询连接的已订阅数据
    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,
    /// 查询k线
    QueryCandlestick = 19,
    /// 查询标的期权链日期列表
    QueryOptionChainDate = 20,
    /// 查询标的期权链某日的行权价信息
    QueryOptionChainDateStrikeInfo = 21,
    /// 查询轮证发行商对应Id
    QueryWarrantIssuerInfo = 22,
    /// 查询轮证筛选列表
    QueryWarrantFilterList = 23,
    /// 查询标的的资金流分时
    QueryCapitalFlowIntraday = 24,
    /// 查询标的资金流大小单
    QueryCapitalFlowDistribution = 25,
    /// 查询标的指标数据
    QuerySecurityCalcIndex = 26,
    /// 查询标的历史 k 线
    QueryHistoryCandlestick = 27,
    /// 推送行情
    PushQuoteData = 101,
    /// 推送盘口
    PushDepthData = 102,
    /// 推送经纪队列
    PushBrokersData = 103,
    /// 推送成交明细
    PushTradeData = 104,
}
impl Command {
    /// String value of the enum field names used in the ProtoBuf definition.
    ///
    /// The values are not transformed in any way and thus are considered stable
    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
    pub fn as_str_name(&self) -> &'static str {
        match self {
            Self::UnknownCommand => "UNKNOWN_COMMAND",
            Self::HeartBeat => "HEART_BEAT",
            Self::Auth => "AUTH",
            Self::Reconnect => "RECONNECT",
            Self::QueryUserQuoteProfile => "QueryUserQuoteProfile",
            Self::Subscription => "Subscription",
            Self::Subscribe => "Subscribe",
            Self::Unsubscribe => "Unsubscribe",
            Self::QueryMarketTradePeriod => "QueryMarketTradePeriod",
            Self::QueryMarketTradeDay => "QueryMarketTradeDay",
            Self::QuerySecurityStaticInfo => "QuerySecurityStaticInfo",
            Self::QuerySecurityQuote => "QuerySecurityQuote",
            Self::QueryOptionQuote => "QueryOptionQuote",
            Self::QueryWarrantQuote => "QueryWarrantQuote",
            Self::QueryDepth => "QueryDepth",
            Self::QueryBrokers => "QueryBrokers",
            Self::QueryParticipantBrokerIds => "QueryParticipantBrokerIds",
            Self::QueryTrade => "QueryTrade",
            Self::QueryIntraday => "QueryIntraday",
            Self::QueryCandlestick => "QueryCandlestick",
            Self::QueryOptionChainDate => "QueryOptionChainDate",
            Self::QueryOptionChainDateStrikeInfo => "QueryOptionChainDateStrikeInfo",
            Self::QueryWarrantIssuerInfo => "QueryWarrantIssuerInfo",
            Self::QueryWarrantFilterList => "QueryWarrantFilterList",
            Self::QueryCapitalFlowIntraday => "QueryCapitalFlowIntraday",
            Self::QueryCapitalFlowDistribution => "QueryCapitalFlowDistribution",
            Self::QuerySecurityCalcIndex => "QuerySecurityCalcIndex",
            Self::QueryHistoryCandlestick => "QueryHistoryCandlestick",
            Self::PushQuoteData => "PushQuoteData",
            Self::PushDepthData => "PushDepthData",
            Self::PushBrokersData => "PushBrokersData",
            Self::PushTradeData => "PushTradeData",
        }
    }
    /// Creates an enum from field names used in the ProtoBuf definition.
    pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
        match value {
            "UNKNOWN_COMMAND" => Some(Self::UnknownCommand),
            "HEART_BEAT" => Some(Self::HeartBeat),
            "AUTH" => Some(Self::Auth),
            "RECONNECT" => Some(Self::Reconnect),
            "QueryUserQuoteProfile" => Some(Self::QueryUserQuoteProfile),
            "Subscription" => Some(Self::Subscription),
            "Subscribe" => Some(Self::Subscribe),
            "Unsubscribe" => Some(Self::Unsubscribe),
            "QueryMarketTradePeriod" => Some(Self::QueryMarketTradePeriod),
            "QueryMarketTradeDay" => Some(Self::QueryMarketTradeDay),
            "QuerySecurityStaticInfo" => Some(Self::QuerySecurityStaticInfo),
            "QuerySecurityQuote" => Some(Self::QuerySecurityQuote),
            "QueryOptionQuote" => Some(Self::QueryOptionQuote),
            "QueryWarrantQuote" => Some(Self::QueryWarrantQuote),
            "QueryDepth" => Some(Self::QueryDepth),
            "QueryBrokers" => Some(Self::QueryBrokers),
            "QueryParticipantBrokerIds" => Some(Self::QueryParticipantBrokerIds),
            "QueryTrade" => Some(Self::QueryTrade),
            "QueryIntraday" => Some(Self::QueryIntraday),
            "QueryCandlestick" => Some(Self::QueryCandlestick),
            "QueryOptionChainDate" => Some(Self::QueryOptionChainDate),
            "QueryOptionChainDateStrikeInfo" => {
                Some(Self::QueryOptionChainDateStrikeInfo)
            }
            "QueryWarrantIssuerInfo" => Some(Self::QueryWarrantIssuerInfo),
            "QueryWarrantFilterList" => Some(Self::QueryWarrantFilterList),
            "QueryCapitalFlowIntraday" => Some(Self::QueryCapitalFlowIntraday),
            "QueryCapitalFlowDistribution" => Some(Self::QueryCapitalFlowDistribution),
            "QuerySecurityCalcIndex" => Some(Self::QuerySecurityCalcIndex),
            "QueryHistoryCandlestick" => Some(Self::QueryHistoryCandlestick),
            "PushQuoteData" => Some(Self::PushQuoteData),
            "PushDepthData" => Some(Self::PushDepthData),
            "PushBrokersData" => Some(Self::PushBrokersData),
            "PushTradeData" => Some(Self::PushTradeData),
            _ => None,
        }
    }
}
#[derive(serde::Serialize, serde::Deserialize)]
#[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,
}
impl TradeStatus {
    /// String value of the enum field names used in the ProtoBuf definition.
    ///
    /// The values are not transformed in any way and thus are considered stable
    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
    pub fn as_str_name(&self) -> &'static str {
        match self {
            Self::Normal => "NORMAL",
            Self::Halted => "HALTED",
            Self::Delisted => "DELISTED",
            Self::Fuse => "FUSE",
            Self::PrepareList => "PREPARE_LIST",
            Self::CodeMoved => "CODE_MOVED",
            Self::ToBeOpened => "TO_BE_OPENED",
            Self::SplitStockHalts => "SPLIT_STOCK_HALTS",
            Self::Expired => "EXPIRED",
            Self::WarrantPrepareList => "WARRANT_PREPARE_LIST",
            Self::SuspendTrade => "SUSPEND_TRADE",
        }
    }
    /// Creates an enum from field names used in the ProtoBuf definition.
    pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
        match value {
            "NORMAL" => Some(Self::Normal),
            "HALTED" => Some(Self::Halted),
            "DELISTED" => Some(Self::Delisted),
            "FUSE" => Some(Self::Fuse),
            "PREPARE_LIST" => Some(Self::PrepareList),
            "CODE_MOVED" => Some(Self::CodeMoved),
            "TO_BE_OPENED" => Some(Self::ToBeOpened),
            "SPLIT_STOCK_HALTS" => Some(Self::SplitStockHalts),
            "EXPIRED" => Some(Self::Expired),
            "WARRANT_PREPARE_LIST" => Some(Self::WarrantPrepareList),
            "SUSPEND_TRADE" => Some(Self::SuspendTrade),
            _ => None,
        }
    }
}
#[derive(serde::Serialize, serde::Deserialize)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum TradeSession {
    NormalTrade = 0,
    PreTrade = 1,
    PostTrade = 2,
    OvernightTrade = 3,
}
impl TradeSession {
    /// String value of the enum field names used in the ProtoBuf definition.
    ///
    /// The values are not transformed in any way and thus are considered stable
    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
    pub fn as_str_name(&self) -> &'static str {
        match self {
            Self::NormalTrade => "NORMAL_TRADE",
            Self::PreTrade => "PRE_TRADE",
            Self::PostTrade => "POST_TRADE",
            Self::OvernightTrade => "OVERNIGHT_TRADE",
        }
    }
    /// Creates an enum from field names used in the ProtoBuf definition.
    pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
        match value {
            "NORMAL_TRADE" => Some(Self::NormalTrade),
            "PRE_TRADE" => Some(Self::PreTrade),
            "POST_TRADE" => Some(Self::PostTrade),
            "OVERNIGHT_TRADE" => Some(Self::OvernightTrade),
            _ => None,
        }
    }
}
#[derive(serde::Serialize, serde::Deserialize)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum AdjustType {
    NoAdjust = 0,
    ForwardAdjust = 1,
}
impl AdjustType {
    /// String value of the enum field names used in the ProtoBuf definition.
    ///
    /// The values are not transformed in any way and thus are considered stable
    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
    pub fn as_str_name(&self) -> &'static str {
        match self {
            Self::NoAdjust => "NO_ADJUST",
            Self::ForwardAdjust => "FORWARD_ADJUST",
        }
    }
    /// Creates an enum from field names used in the ProtoBuf definition.
    pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
        match value {
            "NO_ADJUST" => Some(Self::NoAdjust),
            "FORWARD_ADJUST" => Some(Self::ForwardAdjust),
            _ => None,
        }
    }
}
#[derive(serde::Serialize, serde::Deserialize)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum Period {
    UnknownPeriod = 0,
    OneMinute = 1,
    TwoMinute = 2,
    ThreeMinute = 3,
    FiveMinute = 5,
    TenMinute = 10,
    FifteenMinute = 15,
    TwentyMinute = 20,
    ThirtyMinute = 30,
    FortyFiveMinute = 45,
    SixtyMinute = 60,
    TwoHour = 120,
    ThreeHour = 180,
    FourHour = 240,
    Day = 1000,
    Week = 2000,
    Month = 3000,
    Quarter = 3500,
    Year = 4000,
}
impl Period {
    /// String value of the enum field names used in the ProtoBuf definition.
    ///
    /// The values are not transformed in any way and thus are considered stable
    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
    pub fn as_str_name(&self) -> &'static str {
        match self {
            Self::UnknownPeriod => "UNKNOWN_PERIOD",
            Self::OneMinute => "ONE_MINUTE",
            Self::TwoMinute => "TWO_MINUTE",
            Self::ThreeMinute => "THREE_MINUTE",
            Self::FiveMinute => "FIVE_MINUTE",
            Self::TenMinute => "TEN_MINUTE",
            Self::FifteenMinute => "FIFTEEN_MINUTE",
            Self::TwentyMinute => "TWENTY_MINUTE",
            Self::ThirtyMinute => "THIRTY_MINUTE",
            Self::FortyFiveMinute => "FORTY_FIVE_MINUTE",
            Self::SixtyMinute => "SIXTY_MINUTE",
            Self::TwoHour => "TWO_HOUR",
            Self::ThreeHour => "THREE_HOUR",
            Self::FourHour => "FOUR_HOUR",
            Self::Day => "DAY",
            Self::Week => "WEEK",
            Self::Month => "MONTH",
            Self::Quarter => "QUARTER",
            Self::Year => "YEAR",
        }
    }
    /// Creates an enum from field names used in the ProtoBuf definition.
    pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
        match value {
            "UNKNOWN_PERIOD" => Some(Self::UnknownPeriod),
            "ONE_MINUTE" => Some(Self::OneMinute),
            "TWO_MINUTE" => Some(Self::TwoMinute),
            "THREE_MINUTE" => Some(Self::ThreeMinute),
            "FIVE_MINUTE" => Some(Self::FiveMinute),
            "TEN_MINUTE" => Some(Self::TenMinute),
            "FIFTEEN_MINUTE" => Some(Self::FifteenMinute),
            "TWENTY_MINUTE" => Some(Self::TwentyMinute),
            "THIRTY_MINUTE" => Some(Self::ThirtyMinute),
            "FORTY_FIVE_MINUTE" => Some(Self::FortyFiveMinute),
            "SIXTY_MINUTE" => Some(Self::SixtyMinute),
            "TWO_HOUR" => Some(Self::TwoHour),
            "THREE_HOUR" => Some(Self::ThreeHour),
            "FOUR_HOUR" => Some(Self::FourHour),
            "DAY" => Some(Self::Day),
            "WEEK" => Some(Self::Week),
            "MONTH" => Some(Self::Month),
            "QUARTER" => Some(Self::Quarter),
            "YEAR" => Some(Self::Year),
            _ => None,
        }
    }
}
#[derive(serde::Serialize, serde::Deserialize)]
#[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,
}
impl SubType {
    /// String value of the enum field names used in the ProtoBuf definition.
    ///
    /// The values are not transformed in any way and thus are considered stable
    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
    pub fn as_str_name(&self) -> &'static str {
        match self {
            Self::UnknownType => "UNKNOWN_TYPE",
            Self::Quote => "QUOTE",
            Self::Depth => "DEPTH",
            Self::Brokers => "BROKERS",
            Self::Trade => "TRADE",
        }
    }
    /// Creates an enum from field names used in the ProtoBuf definition.
    pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
        match value {
            "UNKNOWN_TYPE" => Some(Self::UnknownType),
            "QUOTE" => Some(Self::Quote),
            "DEPTH" => Some(Self::Depth),
            "BROKERS" => Some(Self::Brokers),
            "TRADE" => Some(Self::Trade),
            _ => None,
        }
    }
}
#[derive(serde::Serialize, serde::Deserialize)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum PushQuoteTag {
    Normal = 0,
    Eod = 1,
}
impl PushQuoteTag {
    /// String value of the enum field names used in the ProtoBuf definition.
    ///
    /// The values are not transformed in any way and thus are considered stable
    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
    pub fn as_str_name(&self) -> &'static str {
        match self {
            Self::Normal => "Normal",
            Self::Eod => "Eod",
        }
    }
    /// Creates an enum from field names used in the ProtoBuf definition.
    pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
        match value {
            "Normal" => Some(Self::Normal),
            "Eod" => Some(Self::Eod),
            _ => None,
        }
    }
}
#[derive(serde::Serialize, serde::Deserialize)]
#[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,
}
impl CalcIndex {
    /// String value of the enum field names used in the ProtoBuf definition.
    ///
    /// The values are not transformed in any way and thus are considered stable
    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
    pub fn as_str_name(&self) -> &'static str {
        match self {
            Self::CalcindexUnknown => "CALCINDEX_UNKNOWN",
            Self::CalcindexLastDone => "CALCINDEX_LAST_DONE",
            Self::CalcindexChangeVal => "CALCINDEX_CHANGE_VAL",
            Self::CalcindexChangeRate => "CALCINDEX_CHANGE_RATE",
            Self::CalcindexVolume => "CALCINDEX_VOLUME",
            Self::CalcindexTurnover => "CALCINDEX_TURNOVER",
            Self::CalcindexYtdChangeRate => "CALCINDEX_YTD_CHANGE_RATE",
            Self::CalcindexTurnoverRate => "CALCINDEX_TURNOVER_RATE",
            Self::CalcindexTotalMarketValue => "CALCINDEX_TOTAL_MARKET_VALUE",
            Self::CalcindexCapitalFlow => "CALCINDEX_CAPITAL_FLOW",
            Self::CalcindexAmplitude => "CALCINDEX_AMPLITUDE",
            Self::CalcindexVolumeRatio => "CALCINDEX_VOLUME_RATIO",
            Self::CalcindexPeTtmRatio => "CALCINDEX_PE_TTM_RATIO",
            Self::CalcindexPbRatio => "CALCINDEX_PB_RATIO",
            Self::CalcindexDividendRatioTtm => "CALCINDEX_DIVIDEND_RATIO_TTM",
            Self::CalcindexFiveDayChangeRate => "CALCINDEX_FIVE_DAY_CHANGE_RATE",
            Self::CalcindexTenDayChangeRate => "CALCINDEX_TEN_DAY_CHANGE_RATE",
            Self::CalcindexHalfYearChangeRate => "CALCINDEX_HALF_YEAR_CHANGE_RATE",
            Self::CalcindexFiveMinutesChangeRate => "CALCINDEX_FIVE_MINUTES_CHANGE_RATE",
            Self::CalcindexExpiryDate => "CALCINDEX_EXPIRY_DATE",
            Self::CalcindexStrikePrice => "CALCINDEX_STRIKE_PRICE",
            Self::CalcindexUpperStrikePrice => "CALCINDEX_UPPER_STRIKE_PRICE",
            Self::CalcindexLowerStrikePrice => "CALCINDEX_LOWER_STRIKE_PRICE",
            Self::CalcindexOutstandingQty => "CALCINDEX_OUTSTANDING_QTY",
            Self::CalcindexOutstandingRatio => "CALCINDEX_OUTSTANDING_RATIO",
            Self::CalcindexPremium => "CALCINDEX_PREMIUM",
            Self::CalcindexItmOtm => "CALCINDEX_ITM_OTM",
            Self::CalcindexImpliedVolatility => "CALCINDEX_IMPLIED_VOLATILITY",
            Self::CalcindexWarrantDelta => "CALCINDEX_WARRANT_DELTA",
            Self::CalcindexCallPrice => "CALCINDEX_CALL_PRICE",
            Self::CalcindexToCallPrice => "CALCINDEX_TO_CALL_PRICE",
            Self::CalcindexEffectiveLeverage => "CALCINDEX_EFFECTIVE_LEVERAGE",
            Self::CalcindexLeverageRatio => "CALCINDEX_LEVERAGE_RATIO",
            Self::CalcindexConversionRatio => "CALCINDEX_CONVERSION_RATIO",
            Self::CalcindexBalancePoint => "CALCINDEX_BALANCE_POINT",
            Self::CalcindexOpenInterest => "CALCINDEX_OPEN_INTEREST",
            Self::CalcindexDelta => "CALCINDEX_DELTA",
            Self::CalcindexGamma => "CALCINDEX_GAMMA",
            Self::CalcindexTheta => "CALCINDEX_THETA",
            Self::CalcindexVega => "CALCINDEX_VEGA",
            Self::CalcindexRho => "CALCINDEX_RHO",
        }
    }
    /// Creates an enum from field names used in the ProtoBuf definition.
    pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
        match value {
            "CALCINDEX_UNKNOWN" => Some(Self::CalcindexUnknown),
            "CALCINDEX_LAST_DONE" => Some(Self::CalcindexLastDone),
            "CALCINDEX_CHANGE_VAL" => Some(Self::CalcindexChangeVal),
            "CALCINDEX_CHANGE_RATE" => Some(Self::CalcindexChangeRate),
            "CALCINDEX_VOLUME" => Some(Self::CalcindexVolume),
            "CALCINDEX_TURNOVER" => Some(Self::CalcindexTurnover),
            "CALCINDEX_YTD_CHANGE_RATE" => Some(Self::CalcindexYtdChangeRate),
            "CALCINDEX_TURNOVER_RATE" => Some(Self::CalcindexTurnoverRate),
            "CALCINDEX_TOTAL_MARKET_VALUE" => Some(Self::CalcindexTotalMarketValue),
            "CALCINDEX_CAPITAL_FLOW" => Some(Self::CalcindexCapitalFlow),
            "CALCINDEX_AMPLITUDE" => Some(Self::CalcindexAmplitude),
            "CALCINDEX_VOLUME_RATIO" => Some(Self::CalcindexVolumeRatio),
            "CALCINDEX_PE_TTM_RATIO" => Some(Self::CalcindexPeTtmRatio),
            "CALCINDEX_PB_RATIO" => Some(Self::CalcindexPbRatio),
            "CALCINDEX_DIVIDEND_RATIO_TTM" => Some(Self::CalcindexDividendRatioTtm),
            "CALCINDEX_FIVE_DAY_CHANGE_RATE" => Some(Self::CalcindexFiveDayChangeRate),
            "CALCINDEX_TEN_DAY_CHANGE_RATE" => Some(Self::CalcindexTenDayChangeRate),
            "CALCINDEX_HALF_YEAR_CHANGE_RATE" => Some(Self::CalcindexHalfYearChangeRate),
            "CALCINDEX_FIVE_MINUTES_CHANGE_RATE" => {
                Some(Self::CalcindexFiveMinutesChangeRate)
            }
            "CALCINDEX_EXPIRY_DATE" => Some(Self::CalcindexExpiryDate),
            "CALCINDEX_STRIKE_PRICE" => Some(Self::CalcindexStrikePrice),
            "CALCINDEX_UPPER_STRIKE_PRICE" => Some(Self::CalcindexUpperStrikePrice),
            "CALCINDEX_LOWER_STRIKE_PRICE" => Some(Self::CalcindexLowerStrikePrice),
            "CALCINDEX_OUTSTANDING_QTY" => Some(Self::CalcindexOutstandingQty),
            "CALCINDEX_OUTSTANDING_RATIO" => Some(Self::CalcindexOutstandingRatio),
            "CALCINDEX_PREMIUM" => Some(Self::CalcindexPremium),
            "CALCINDEX_ITM_OTM" => Some(Self::CalcindexItmOtm),
            "CALCINDEX_IMPLIED_VOLATILITY" => Some(Self::CalcindexImpliedVolatility),
            "CALCINDEX_WARRANT_DELTA" => Some(Self::CalcindexWarrantDelta),
            "CALCINDEX_CALL_PRICE" => Some(Self::CalcindexCallPrice),
            "CALCINDEX_TO_CALL_PRICE" => Some(Self::CalcindexToCallPrice),
            "CALCINDEX_EFFECTIVE_LEVERAGE" => Some(Self::CalcindexEffectiveLeverage),
            "CALCINDEX_LEVERAGE_RATIO" => Some(Self::CalcindexLeverageRatio),
            "CALCINDEX_CONVERSION_RATIO" => Some(Self::CalcindexConversionRatio),
            "CALCINDEX_BALANCE_POINT" => Some(Self::CalcindexBalancePoint),
            "CALCINDEX_OPEN_INTEREST" => Some(Self::CalcindexOpenInterest),
            "CALCINDEX_DELTA" => Some(Self::CalcindexDelta),
            "CALCINDEX_GAMMA" => Some(Self::CalcindexGamma),
            "CALCINDEX_THETA" => Some(Self::CalcindexTheta),
            "CALCINDEX_VEGA" => Some(Self::CalcindexVega),
            "CALCINDEX_RHO" => Some(Self::CalcindexRho),
            _ => None,
        }
    }
}
#[derive(serde::Serialize, serde::Deserialize)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum HistoryCandlestickQueryType {
    UnknownQueryType = 0,
    QueryByOffset = 1,
    QueryByDate = 2,
}
impl HistoryCandlestickQueryType {
    /// String value of the enum field names used in the ProtoBuf definition.
    ///
    /// The values are not transformed in any way and thus are considered stable
    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
    pub fn as_str_name(&self) -> &'static str {
        match self {
            Self::UnknownQueryType => "UNKNOWN_QUERY_TYPE",
            Self::QueryByOffset => "QUERY_BY_OFFSET",
            Self::QueryByDate => "QUERY_BY_DATE",
        }
    }
    /// Creates an enum from field names used in the ProtoBuf definition.
    pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
        match value {
            "UNKNOWN_QUERY_TYPE" => Some(Self::UnknownQueryType),
            "QUERY_BY_OFFSET" => Some(Self::QueryByOffset),
            "QUERY_BY_DATE" => Some(Self::QueryByDate),
            _ => None,
        }
    }
}
#[derive(serde::Serialize, serde::Deserialize)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum Direction {
    /// 老数据, 从最新的数据往历史数据翻页
    Backward = 0,
    /// 新数据, 从当前数据往最新数据翻页
    Forward = 1,
}
impl Direction {
    /// String value of the enum field names used in the ProtoBuf definition.
    ///
    /// The values are not transformed in any way and thus are considered stable
    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
    pub fn as_str_name(&self) -> &'static str {
        match self {
            Self::Backward => "BACKWARD",
            Self::Forward => "FORWARD",
        }
    }
    /// Creates an enum from field names used in the ProtoBuf definition.
    pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
        match value {
            "BACKWARD" => Some(Self::Backward),
            "FORWARD" => Some(Self::Forward),
            _ => None,
        }
    }
}