finalytics 0.8.9

A rust library for financial data analysis
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
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
use strum::{EnumIter, EnumString, Display, AsRefStr, IntoStaticStr, VariantNames, EnumProperty};

#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, EnumString, Display, AsRefStr, IntoStaticStr, EnumIter, VariantNames, EnumProperty)]
pub enum QuoteType {
    #[strum(serialize = "EQUITY")]
    Equity,
    #[strum(serialize = "ETF")]
    Etf,
    #[strum(serialize = "MUTUALFUND")]
    MutualFund,
    #[strum(serialize = "INDEX")]
    Index,
    #[strum(serialize = "FUTURE")]
    Future,
    #[strum(serialize = "CRYPTOCURRENCY")]
    Crypto,
}


#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, EnumString, Display, AsRefStr, IntoStaticStr, EnumIter, VariantNames, EnumProperty)]
pub enum Sector {
    #[strum(serialize = "Basic Materials")]
    BasicMaterials,
    #[strum(serialize = "Communication Services")]
    CommunicationServices,
    #[strum(serialize = "Consumer Cyclical")]
    ConsumerCyclical,
    #[strum(serialize = "Consumer Defensive")]
    ConsumerDefensive,
    #[strum(serialize = "Energy")]
    Energy,
    #[strum(serialize = "Financial Services")]
    FinancialServices,
    #[strum(serialize = "Healthcare")]
    Healthcare,
    #[strum(serialize = "Industrials")]
    Industrials,
    #[strum(serialize = "Real Estate")]
    RealEstate,
    #[strum(serialize = "Technology")]
    Technology,
    #[strum(serialize = "Utilities")]
    Utilities,
}

impl Sector {
    pub fn industries(&self) -> &'static [&'static str] {
        match self {
            Sector::BasicMaterials => &[
                "Agricultural Inputs",
                "Building Materials",
                "Chemicals",
                "Specialty Chemicals",
                "Lumber & Wood Production",
                "Paper & Paper Products",
                "Aluminum",
                "Copper",
                "Other Industrial Metals & Mining",
                "Gold",
                "Silver",
                "Other Precious Metals & Mining",
                "Coking Coal",
                "Steel",
            ],
            Sector::ConsumerCyclical => &[
                "Auto & Truck Dealerships",
                "Auto Manufacturers",
                "Auto Parts",
                "Recreational Vehicles",
                "Furnishings, Fixtures & Appliances",
                "Residential Construction",
                "Textile Manufacturing",
                "Apparel Manufacturing",
                "Footwear & Accessories",
                "Packaging & Containers",
                "Personal Services",
                "Restaurants",
                "Apparel Retail",
                "Department Stores",
                "Home Improvement Retail",
                "Luxury Goods",
                "Internet Retail",
                "Specialty Retail",
                "Gambling",
                "Leisure",
                "Lodging",
                "Resorts & Casinos",
                "Travel Services",
            ],
            Sector::FinancialServices => &[
                "Asset Management",
                "Banks - Diversified",
                "Banks - Regional",
                "Mortgage Finance",
                "Capital Markets",
                "Financial Data & Stock Exchanges",
                "Insurance - Life",
                "Insurance - Property & Casualty",
                "Insurance - Reinsurance",
                "Insurance - Specialty",
                "Insurance Brokers",
                "Insurance - Diversified",
                "Shell Companies",
                "Financial Conglomerates",
                "Credit Services",
            ],
            Sector::RealEstate => &[
                "Real Estate - Development",
                "Real Estate Services",
                "Real Estate - Diversified",
                "REIT - Healthcare Facilities",
                "REIT - Hotel & Motel",
                "REIT - Industrial",
                "REIT - Office",
                "REIT - Residential",
                "REIT - Retail",
                "REIT - Mortgage",
                "REIT - Specialty",
                "REIT - Diversified",
            ],
            Sector::ConsumerDefensive => &[
                "Beverages - Brewers",
                "Beverages - Wineries & Distilleries",
                "Beverages - Non-Alcoholic",
                "Confectioners",
                "Farm Products",
                "Household & Personal Products",
                "Packaged Foods",
                "Education & Training Services",
                "Discount Stores",
                "Food Distribution",
                "Grocery Stores",
                "Tobacco",
            ],
            Sector::Healthcare => &[
                "Biotechnology",
                "Drug Manufacturers - General",
                "Drug Manufacturers - Specialty & Generic",
                "Healthcare Plans",
                "Medical Care Facilities",
                "Pharmaceutical Retailers",
                "Health Information Services",
                "Medical Devices",
                "Medical Instruments & Supplies",
                "Diagnostics & Research",
                "Medical Distribution",
            ],
            Sector::Utilities => &[
                "Utilities - Independent Power Producers",
                "Utilities - Renewable",
                "Utilities - Regulated Water",
                "Utilities - Regulated Electric",
                "Utilities - Regulated Gas",
                "Utilities - Diversified",
            ],
            Sector::CommunicationServices => &[
                "Telecom Services",
                "Advertising Agencies",
                "Publishing",
                "Broadcasting",
                "Entertainment",
                "Internet Content & Information",
                "Electronic Gaming & Multimedia",
            ],
            Sector::Energy => &[
                "Oil & Gas Drilling",
                "Oil & Gas E&P",
                "Oil & Gas Integrated",
                "Oil & Gas Midstream",
                "Oil & Gas Refining & Marketing",
                "Oil & Gas Equipment & Services",
                "Thermal Coal",
                "Uranium",
            ],
            Sector::Industrials => &[
                "Aerospace & Defense",
                "Specialty Business Services",
                "Consulting Services",
                "Rental & Leasing Services",
                "Security & Protection Services",
                "Staffing & Employment Services",
                "Conglomerates",
                "Engineering & Construction",
                "Infrastructure Operations",
                "Building Products & Equipment",
                "Farm & Heavy Construction Machinery",
                "Industrial Distribution",
                "Business Equipment & Supplies",
                "Specialty Industrial Machinery",
                "Metal Fabrication",
                "Pollution & Treatment Controls",
                "FILTERLABEL_TOOLS_ACCESSORIES",
                "Electrical Equipment & Parts",
                "Airports & Air Services",
                "Airlines",
                "Railroads",
                "Marine Shipping",
                "Trucking",
                "Integrated Freight & Logistics",
                "Waste Management",
            ],
            Sector::Technology => &[
                "Information Technology Services",
                "Software - Application",
                "Software - Infrastructure",
                "Communication Equipment",
                "Computer Hardware",
                "Consumer Electronics",
                "Electronic Components",
                "Electronics & Computer Distribution",
                "Scientific & Technical Instruments",
                "Semiconductor Equipment & Materials",
                "Semiconductors",
                "Solar",
            ],
        }
    }
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, EnumString, Display, AsRefStr, IntoStaticStr, EnumIter, VariantNames, EnumProperty)]
pub enum Exchange {
    #[strum(serialize = "NYQ", props(full_name = "New York Stock Exchange"))]
    NewYorkStockExchange,

    #[strum(serialize = "NMS", props(full_name = "NASDAQ"))]
    NASDAQ,

    #[strum(serialize = "STO", props(full_name = "Stockholm Stock Exchange"))]
    StockholmStockExchange,

    #[strum(serialize = "DJI", props(full_name = "Dow Jones Indices"))]
    DowJonesIndices,

    #[strum(serialize = "NCM", props(full_name = "Nasdaq Capital Market"))]
    NasdaqCapitalMarket,

    #[strum(serialize = "NGM", props(full_name = "Nasdaq Global Market"))]
    NasdaqGlobalMarket,

    #[strum(serialize = "CCY", props(full_name = "Currencies"))]
    Currencies,

    #[strum(serialize = "CCC", props(full_name = "Cryptocurrencies"))]
    Cryptocurrencies,

    #[strum(serialize = "PCX", props(full_name = "NYSE Arca"))]
    NYSEArca,

    #[strum(serialize = "NIM", props(full_name = "NYSE American"))]
    NYSEAmerican,

    #[strum(serialize = "NYM", props(full_name = "New York Mercantile Exchange"))]
    NewYorkMercantileExchange,

    #[strum(serialize = "CMX", props(full_name = "COMEX"))]
    COMEX,

    #[strum(serialize = "CBT", props(full_name = "Chicago Board of Trade"))]
    ChicagoBoardofTrade,

    #[strum(serialize = "CME", props(full_name = "Chicago Mercantile Exchange"))]
    ChicagoMercantileExchange,

    #[strum(serialize = "PNK", props(full_name = "Pink Open Market"))]
    PinkOpenMarket,

    #[strum(serialize = "TOR", props(full_name = "Toronto Stock Exchange"))]
    TorontoStockExchange,

    #[strum(serialize = "ASE", props(full_name = "NYSE American Options"))]
    NYSEAmericanOptions,

    #[strum(serialize = "NYB", props(full_name = "New York Board of Trade"))]
    NewYorkBoardofTrade,

    #[strum(serialize = "SNP", props(full_name = "SNP Indices"))]
    SNPIndices,

    #[strum(serialize = "WCB", props(full_name = "West Coast Board of Trade"))]
    WestCoastBoardofTrade,

    #[strum(serialize = "BTS", props(full_name = "BTS"))]
    BTS,

    #[strum(serialize = "CXI", props(full_name = "Currency Exchange International"))]
    CurrencyExchangeInternational,

    #[strum(serialize = "NAS", props(full_name = "NASDAQ Stock Market"))]
    NASDAQStockMarket,

    #[strum(serialize = "NSI", props(full_name = "Nagoya Stock Exchange"))]
    NagoyaStockExchange,

    #[strum(serialize = "LSE", props(full_name = "London Stock Exchange"))]
    LondonStockExchange,

    #[strum(serialize = "GER", props(full_name = "Xetra"))]
    Xetra,

    #[strum(serialize = "BER", props(full_name = "Berlin Stock Exchange"))]
    BerlinStockExchange,

    #[strum(serialize = "DUS", props(full_name = "Dusseldorf Stock Exchange"))]
    DusseldorfStockExchange,

    #[strum(serialize = "PAR", props(full_name = "Euronext Paris"))]
    EuronextParis,

    #[strum(serialize = "NYS", props(full_name = "New York Stock Exchange ARCA"))]
    NewYorkStockExchangeARCA,

    #[strum(serialize = "IOB", props(full_name = "London IOB"))]
    LondonIOB,

    #[strum(serialize = "ZRH", props(full_name = "SIX Swiss Exchange"))]
    SIXSwissExchange,

    #[strum(serialize = "BUE", props(full_name = "Buenos Aires Stock Exchange"))]
    BuenosAiresStockExchange,

    #[strum(serialize = "BSE", props(full_name = "Bombay Stock Exchange"))]
    BombayStockExchange,

    #[strum(serialize = "ASX", props(full_name = "Australian Securities Exchange"))]
    AustralianSecuritiesExchange,

    #[strum(serialize = "VAN", props(full_name = "Vancouver Stock Exchange"))]
    VancouverStockExchange,

    #[strum(serialize = "AMS", props(full_name = "Amsterdam Stock Exchange"))]
    AmsterdamStockExchange,

    #[strum(serialize = "JPX", props(full_name = "Japan Exchange Group"))]
    JapanExchangeGroup,

    #[strum(serialize = "CNQ", props(full_name = "Canadian National Stock Exchange"))]
    CanadianNationalStockExchange,

    #[strum(serialize = "FRA", props(full_name = "Frankfurt Stock Exchange"))]
    FrankfurtStockExchange,

    #[strum(serialize = "MUN", props(full_name = "Munich Stock Exchange"))]
    MunichStockExchange,

    #[strum(serialize = "IST", props(full_name = "Istanbul Stock Exchange"))]
    IstanbulStockExchange,

    #[strum(serialize = "MEX", props(full_name = "Mexican Stock Exchange"))]
    MexicanStockExchange,

    #[strum(serialize = "MIL", props(full_name = "Milan Stock Exchange"))]
    MilanStockExchange,

    #[strum(serialize = "NZE", props(full_name = "New Zealand Stock Exchange"))]
    NewZealandStockExchange,

    #[strum(serialize = "SAO", props(full_name = "Sao Paulo Stock Exchange"))]
    SaoPauloStockExchange,

    #[strum(serialize = "KSC", props(full_name = "Korea Stock Exchange"))]
    KoreaStockExchange,

    #[strum(serialize = "FGI", props(full_name = "Fukuoka Stock Exchange"))]
    FukuokaStockExchange,

    #[strum(serialize = "HKG", props(full_name = "Hong Kong Stock Exchange"))]
    HongKongStockExchange,

    #[strum(serialize = "SET", props(full_name = "Stock Exchange of Thailand"))]
    StockExchangeofThailand,

    #[strum(serialize = "SES", props(full_name = "Singapore Exchange Securities"))]
    SingaporeExchangeSecurities,

    #[strum(serialize = "SHH", props(full_name = "Shanghai Stock Exchange"))]
    ShanghaiStockExchange,

    #[strum(serialize = "EBS", props(full_name = "Swiss Electronic Bourse"))]
    SwissElectronicBourse,

    #[strum(serialize = "OSL", props(full_name = "Oslo Stock Exchange"))]
    OsloStockExchange,

    #[strum(serialize = "TLV", props(full_name = "Tel Aviv Stock Exchange"))]
    TelAvivStockExchange,

    #[strum(serialize = "KOE", props(full_name = "Korea Exchange"))]
    KoreaExchange,

    #[strum(serialize = "CPH", props(full_name = "Copenhagen Stock Exchange"))]
    CopenhagenStockExchange,

    #[strum(serialize = "STU", props(full_name = "Stuttgart Stock Exchange"))]
    StuttgartStockExchange,

    #[strum(serialize = "KLS", props(full_name = "Bursa Malaysia"))]
    BursaMalaysia,

    #[strum(serialize = "HAM", props(full_name = "Hamburg Stock Exchange"))]
    HamburgStockExchange,

    #[strum(serialize = "VIE", props(full_name = "Vienna Stock Exchange"))]
    ViennaStockExchange,

    #[strum(serialize = "PRA", props(full_name = "Prague Stock Exchange"))]
    PragueStockExchange,

    #[strum(serialize = "HAN", props(full_name = "Hanoi Stock Exchange"))]
    HanoiStockExchange,

    #[strum(serialize = "JNB", props(full_name = "Johannesburg Stock Exchange"))]
    JohannesburgStockExchange,

    #[strum(serialize = "DXE", props(full_name = "Cboe DXE"))]
    CboeDXE,

    #[strum(serialize = "MSC", props(full_name = "Moscow Exchange"))]
    MoscowExchange,

    #[strum(serialize = "CXA", props(full_name = "Cboe Australia"))]
    CboeAustralia,

    #[strum(serialize = "SHZ", props(full_name = "Shenzhen Stock Exchange"))]
    ShenzhenStockExchange,

    #[strum(serialize = "VSE", props(full_name = "Vietnam Stock Exchange"))]
    VietnamStockExchange,

    #[strum(serialize = "WSE", props(full_name = "Warsaw Stock Exchange"))]
    WarsawStockExchange,

    #[strum(serialize = "ICE", props(full_name = "Intercontinental Exchange"))]
    IntercontinentalExchange,

    #[strum(serialize = "RIS", props(full_name = "Riga Stock Exchange"))]
    RigaStockExchange,

    #[strum(serialize = "CXE", props(full_name = "Zagreb Stock Exchange"))]
    ZagrebStockExchange,

    #[strum(serialize = "JKT", props(full_name = "Jakarta Stock Exchange"))]
    JakartaStockExchange,

    #[strum(serialize = "TWO", props(full_name = "Taiwan OTC Exchange"))]
    TaiwanOTCExchange,

    #[strum(serialize = "OSA", props(full_name = "Osaka Stock Exchange"))]
    OsakaStockExchange,

    #[strum(serialize = "AQS", props(full_name = "Aquis Stock Exchange"))]
    AquisStockExchange,

    #[strum(serialize = "TAI", props(full_name = "Taiwan Stock Exchange"))]
    TaiwanStockExchange,

    #[strum(serialize = "DOH", props(full_name = "Qatar Stock Exchange"))]
    QatarStockExchange,

    #[strum(serialize = "HEL", props(full_name = "Helsinki Stock Exchange"))]
    HelsinkiStockExchange,

    #[strum(serialize = "TSI", props(full_name = "Tallinn Stock Exchange"))]
    TallinnStockExchange,

    #[strum(serialize = "MCE", props(full_name = "Moldova Stock Exchange"))]
    MoldovaStockExchange,

    #[strum(serialize = "NEO", props(full_name = "NEO Exchange"))]
    NEOExchange,

    #[strum(serialize = "BRU", props(full_name = "Euronext Brussels"))]
    EuronextBrussels,

    #[strum(serialize = "LIT", props(full_name = "Vilnius Stock Exchange"))]
    VilniusStockExchange,

    #[strum(serialize = "BUD", props(full_name = "Budapest Stock Exchange"))]
    BudapestStockExchange,

    #[strum(serialize = "LIS", props(full_name = "Euronext Lisbon"))]
    EuronextLisbon,

    #[strum(serialize = "SGO", props(full_name = "Santiago Stock Exchange"))]
    SantiagoStockExchange,

    #[strum(serialize = "FSI", props(full_name = "FSI"))]
    FSI,

    #[strum(serialize = "ISE", props(full_name = "Irish Stock Exchange"))]
    IrishStockExchange,

    #[strum(serialize = "ATH", props(full_name = "Athens Stock Exchange"))]
    AthensStockExchange,

    #[strum(serialize = "SAU", props(full_name = "Saudi Stock Exchange"))]
    SaudiStockExchange,

    #[strum(serialize = "TLO", props(full_name = "Trinidad and Tobago Stock Exchange"))]
    TrinidadandTobagoStockExchange,

    #[strum(serialize = "CBO", props(full_name = "Cboe BXE"))]
    CboeBXE,

    #[strum(serialize = "BVC", props(full_name = "BVP Bratislava Stock Exchange"))]
    BVPBratislavaStockExchange,

    #[strum(serialize = "TAL", props(full_name = "TAL"))]
    TAL,

    #[strum(serialize = "KUW", props(full_name = "Boursa Kuwait"))]
    BoursaKuwait,

    #[strum(serialize = "CAI", props(full_name = "Egyptian Exchange"))]
    EgyptianExchange,

    #[strum(serialize = "CSE", props(full_name = "Colombo Stock Exchange"))]
    ColomboStockExchange,

    #[strum(serialize = "DFM", props(full_name = "Dubai Financial Market"))]
    DubaiFinancialMarket,

    #[strum(serialize = "PHS", props(full_name = "Philippine Stock Exchange"))]
    PhilippineStockExchange,

    #[strum(serialize = "FKA", props(full_name = "Kazakhstan Stock Exchange"))]
    KazakhstanStockExchange,

    #[strum(serialize = "OBB", props(full_name = "OTC Bulletin Board"))]
    OTCBulletinBoard,

    #[strum(serialize = "YHD", props(full_name = "YHD"))]
    YHD,

    #[strum(serialize = "SAP", props(full_name = "SAP"))]
    SAP,

    #[strum(serialize = "CCS", props(full_name = "Caracas Stock Exchange"))]
    CaracasStockExchange,

    #[strum(serialize = "OPI", props(full_name = "OPI"))]
    OPI,

    #[strum(serialize = "ENX", props(full_name = "Euronext"))]
    Euronext,
}

impl Exchange {
    pub fn full_name(&self) -> &'static str {
        self.get_str("full_name").unwrap_or("")
    }
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, EnumString, Display, AsRefStr, IntoStaticStr, EnumIter, VariantNames, EnumProperty)]
pub enum Region {
    #[strum(serialize = "ar", props(full_name = "Argentina"))]
    Argentina,

    #[strum(serialize = "at", props(full_name = "Austria"))]
    Austria,

    #[strum(serialize = "au", props(full_name = "Australia"))]
    Australia,

    #[strum(serialize = "be", props(full_name = "Belgium"))]
    Belgium,

    #[strum(serialize = "br", props(full_name = "Brazil"))]
    Brazil,

    #[strum(serialize = "ca", props(full_name = "Canada"))]
    Canada,

    #[strum(serialize = "ch", props(full_name = "Switzerland"))]
    Switzerland,

    #[strum(serialize = "cl", props(full_name = "Chile"))]
    Chile,

    #[strum(serialize = "cn", props(full_name = "China"))]
    China,

    #[strum(serialize = "cz", props(full_name = "Czechia"))]
    Czechia,

    #[strum(serialize = "de", props(full_name = "Germany"))]
    Germany,

    #[strum(serialize = "dk", props(full_name = "Denmark"))]
    Denmark,

    #[strum(serialize = "ee", props(full_name = "Estonia"))]
    Estonia,

    #[strum(serialize = "eg", props(full_name = "Egypt"))]
    Egypt,

    #[strum(serialize = "es", props(full_name = "Spain"))]
    Spain,

    #[strum(serialize = "fi", props(full_name = "Finland"))]
    Finland,

    #[strum(serialize = "fr", props(full_name = "France"))]
    France,

    #[strum(serialize = "gb", props(full_name = "United Kingdom"))]
    UnitedKingdom,

    #[strum(serialize = "gr", props(full_name = "Greece"))]
    Greece,

    #[strum(serialize = "hk", props(full_name = "Hong Kong Sar China"))]
    HongKongSarChina,

    #[strum(serialize = "hu", props(full_name = "Hungary"))]
    Hungary,

    #[strum(serialize = "id", props(full_name = "Indonesia"))]
    Indonesia,

    #[strum(serialize = "ie", props(full_name = "Ireland"))]
    Ireland,

    #[strum(serialize = "il", props(full_name = "Israel"))]
    Israel,

    #[strum(serialize = "in", props(full_name = "India"))]
    India,

    #[strum(serialize = "is", props(full_name = "Iceland"))]
    Iceland,

    #[strum(serialize = "it", props(full_name = "Italy"))]
    Italy,

    #[strum(serialize = "jp", props(full_name = "Japan"))]
    Japan,

    #[strum(serialize = "kr", props(full_name = "South Korea"))]
    SouthKorea,

    #[strum(serialize = "kw", props(full_name = "Kuwait"))]
    Kuwait,

    #[strum(serialize = "lk", props(full_name = "Sri Lanka"))]
    SriLanka,

    #[strum(serialize = "lt", props(full_name = "Lithuania"))]
    Lithuania,

    #[strum(serialize = "lv", props(full_name = "Latvia"))]
    Latvia,

    #[strum(serialize = "mx", props(full_name = "Mexico"))]
    Mexico,

    #[strum(serialize = "my", props(full_name = "Malaysia"))]
    Malaysia,

    #[strum(serialize = "nl", props(full_name = "Netherlands"))]
    Netherlands,

    #[strum(serialize = "no", props(full_name = "Norway"))]
    Norway,

    #[strum(serialize = "nz", props(full_name = "New Zealand"))]
    NewZealand,

    #[strum(serialize = "pe", props(full_name = "Peru"))]
    Peru,

    #[strum(serialize = "ph", props(full_name = "Philippines"))]
    Philippines,

    #[strum(serialize = "pk", props(full_name = "Pakistan"))]
    Pakistan,

    #[strum(serialize = "pl", props(full_name = "Poland"))]
    Poland,

    #[strum(serialize = "pt", props(full_name = "Portugal"))]
    Portugal,

    #[strum(serialize = "qa", props(full_name = "Qatar"))]
    Qatar,

    #[strum(serialize = "ru", props(full_name = "Russia"))]
    Russia,

    #[strum(serialize = "sa", props(full_name = "Saudi Arabia"))]
    SaudiArabia,

    #[strum(serialize = "se", props(full_name = "Sweden"))]
    Sweden,

    #[strum(serialize = "sg", props(full_name = "Singapore"))]
    Singapore,

    #[strum(serialize = "sr", props(full_name = "Suriname"))]
    Suriname,

    #[strum(serialize = "th", props(full_name = "Thailand"))]
    Thailand,

    #[strum(serialize = "tr", props(full_name = "Turkey"))]
    Turkey,

    #[strum(serialize = "tw", props(full_name = "Taiwan"))]
    Taiwan,

    #[strum(serialize = "us", props(full_name = "United States"))]
    UnitedStates,

    #[strum(serialize = "ve", props(full_name = "Venezuela"))]
    Venezuela,

    #[strum(serialize = "vn", props(full_name = "Vietnam"))]
    Vietnam,

    #[strum(serialize = "za", props(full_name = "South Africa"))]
    SouthAfrica,
}

impl Region {
    pub fn full_name(&self) -> &'static str {
        self.get_str("full_name").unwrap()
    }
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, EnumString, Display, AsRefStr, IntoStaticStr, EnumIter, VariantNames)]
pub enum PeerGroup {
    #[strum(serialize = "Aerospace & Defense")]
    AerospaceDefense,

    #[strum(serialize = "Auto Components")]
    AutoComponents,

    #[strum(serialize = "Automobiles")]
    Automobiles,

    #[strum(serialize = "Banks")]
    Banks,

    #[strum(serialize = "Building Products")]
    BuildingProducts,

    #[strum(serialize = "Chemicals")]
    Chemicals,

    #[strum(serialize = "China Fund Aggressive Allocation Fund")]
    ChinaFundAggressiveAllocationFund,

    #[strum(serialize = "China Fund Equity Funds")]
    ChinaFundEquityFunds,

    #[strum(serialize = "China Fund QDII Greater China Equity")]
    ChinaFundQDIIGreaterChinaEquity,

    #[strum(serialize = "China Fund QDII Sector Equity")]
    ChinaFundQDIISectorEquity,

    #[strum(serialize = "China Fund Sector Equity Financial and Real Estate")]
    ChinaFundSectorEquityFinancialAndRealEstate,

    #[strum(serialize = "Commercial Services")]
    CommercialServices,

    #[strum(serialize = "Construction & Engineering")]
    ConstructionEngineering,

    #[strum(serialize = "Construction Materials")]
    ConstructionMaterials,

    #[strum(serialize = "Consumer Durables")]
    ConsumerDurables,

    #[strum(serialize = "Consumer Services")]
    ConsumerServices,

    #[strum(serialize = "Containers & Packaging")]
    ContainersPackaging,

    #[strum(serialize = "Diversified Financials")]
    DiversifiedFinancials,

    #[strum(serialize = "Diversified Metals")]
    DiversifiedMetals,

    #[strum(serialize = "EAA CE Global Large-Cap Blend Equity")]
    EAACEGlobalLargeCapBlendEquity,

    #[strum(serialize = "EAA CE Other")]
    EAACEOther,

    #[strum(serialize = "EAA CE Sector Equity Biotechnology")]
    EAACESectorEquityBiotechnology,

    #[strum(serialize = "EAA CE UK Large-Cap Equity")]
    EAACEUKLargeCapEquity,

    #[strum(serialize = "EAA CE UK Small-Cap Equity")]
    EAACEUKSmallCapEquity,

    #[strum(serialize = "EAA Fund Asia ex-Japan Equity")]
    EAAFundAsiaExJapanEquity,

    #[strum(serialize = "EAA Fund China Equity - A Shares")]
    EAAFundChinaEquityAShares,

    #[strum(serialize = "EAA Fund China Equity")]
    EAAFundChinaEquity,

    #[strum(serialize = "EAA Fund Denmark Equity")]
    EAAFundDenmarkEquity,

    #[strum(serialize = "EAA Fund Emerging Europe ex-Russia Equity")]
    EAAFundEmergingEuropeExRussiaEquity,

    #[strum(serialize = "EAA Fund EUR Aggressive Allocation - Global")]
    EAAFundEURAggressiveAllocationGlobal,

    #[strum(serialize = "EAA Fund EUR Corporate Bond")]
    EAAFundEURCorporateBond,

    #[strum(serialize = "EAA Fund EUR Moderate Allocation - Global")]
    EAAFundEURModerateAllocationGlobal,

    #[strum(serialize = "EAA Fund Europe Large-Cap Blend Equity")]
    EAAFundEuropeLargeCapBlendEquity,

    #[strum(serialize = "EAA Fund Eurozone Large-Cap Equity")]
    EAAFundEurozoneLargeCapEquity,

    #[strum(serialize = "EAA Fund Germany Equity")]
    EAAFundGermanyEquity,

    #[strum(serialize = "EAA Fund Global Emerging Markets Equity")]
    EAAFundGlobalEmergingMarketsEquity,

    #[strum(serialize = "EAA Fund Global Equity Income")]
    EAAFundGlobalEquityIncome,

    #[strum(serialize = "EAA Fund Global Flex-Cap Equity")]
    EAAFundGlobalFlexCapEquity,

    #[strum(serialize = "EAA Fund Global Large-Cap Blend Equity")]
    EAAFundGlobalLargeCapBlendEquity,

    #[strum(serialize = "EAA Fund Global Large-Cap Growth Equity")]
    EAAFundGlobalLargeCapGrowthEquity,

    #[strum(serialize = "EAA Fund Hong Kong Equity")]
    EAAFundHongKongEquity,

    #[strum(serialize = "EAA Fund Japan Large-Cap Equity")]
    EAAFundJapanLargeCapEquity,

    #[strum(serialize = "EAA Fund Other Bond")]
    EAAFundOtherBond,

    #[strum(serialize = "EAA Fund Other Equity")]
    EAAFundOtherEquity,

    #[strum(serialize = "EAA Fund RMB Bond - Onshore")]
    EAAFundRMBBondOnshore,

    #[strum(serialize = "EAA Fund Sector Equity Consumer Goods & Services")]
    EAAFundSectorEquityConsumerGoodsServices,

    #[strum(serialize = "EAA Fund Sector Equity Financial Services")]
    EAAFundSectorEquityFinancialServices,

    #[strum(serialize = "EAA Fund Sector Equity Industrial Materials")]
    EAAFundSectorEquityIndustrialMaterials,

    #[strum(serialize = "EAA Fund Sector Equity Technology")]
    EAAFundSectorEquityTechnology,

    #[strum(serialize = "EAA Fund South Africa & Namibia Equity")]
    EAAFundSouthAfricaNamibiaEquity,

    #[strum(serialize = "EAA Fund Switzerland Equity")]
    EAAFundSwitzerlandEquity,

    #[strum(serialize = "EAA Fund US Large-Cap Blend Equity")]
    EAAFundUSLargeCapBlendEquity,

    #[strum(serialize = "EAA Fund USD Corporate Bond")]
    EAAFundUSDCorporateBond,

    #[strum(serialize = "Electrical Equipment")]
    ElectricalEquipment,

    #[strum(serialize = "Energy Services")]
    EnergyServices,

    #[strum(serialize = "Food Products")]
    FoodProducts,

    #[strum(serialize = "Food Retailers")]
    FoodRetailers,

    #[strum(serialize = "Healthcare")]
    Healthcare,

    #[strum(serialize = "Homebuilders")]
    Homebuilders,

    #[strum(serialize = "Household Products")]
    HouseholdProducts,

    #[strum(serialize = "India CE Multi-Cap")]
    IndiaCEMultiCap,

    #[strum(serialize = "India Fund Large-Cap")]
    IndiaFundLargeCap,

    #[strum(serialize = "India Fund Sector - Financial Services")]
    IndiaFundSectorFinancialServices,

    #[strum(serialize = "Industrial Conglomerates")]
    IndustrialConglomerates,

    #[strum(serialize = "Insurance")]
    Insurance,

    #[strum(serialize = "Machinery")]
    Machinery,

    #[strum(serialize = "Media")]
    Media,

    #[strum(serialize = "Mexico Fund Mexico Equity")]
    MexicoFundMexicoEquity,

    #[strum(serialize = "Oil & Gas Producers")]
    OilGasProducers,

    #[strum(serialize = "Paper & Forestry")]
    PaperForestry,

    #[strum(serialize = "Pharmaceuticals")]
    Pharmaceuticals,

    #[strum(serialize = "Precious Metals")]
    PreciousMetals,

    #[strum(serialize = "Real Estate")]
    RealEstate,

    #[strum(serialize = "Refiners & Pipelines")]
    RefinersPipelines,

    #[strum(serialize = "Retailing")]
    Retailing,

    #[strum(serialize = "Semiconductors")]
    Semiconductors,

    #[strum(serialize = "Software & Services")]
    SoftwareServices,

    #[strum(serialize = "Steel")]
    Steel,

    #[strum(serialize = "Technology Hardware")]
    TechnologyHardware,

    #[strum(serialize = "Telecommunication Services")]
    TelecommunicationServices,

    #[strum(serialize = "Textiles & Apparel")]
    TextilesApparel,

    #[strum(serialize = "Traders & Distributors")]
    TradersDistributors,

    #[strum(serialize = "Transportation Infrastructure")]
    TransportationInfrastructure,

    #[strum(serialize = "Transportation")]
    Transportation,

    #[strum(serialize = "US CE Convertibles")]
    USCEConvertibles,

    #[strum(serialize = "US CE Options-based")]
    USCEOptionsBased,

    #[strum(serialize = "US CE Preferred Stock")]
    USCEPreferredStock,

    #[strum(serialize = "US Fund China Region")]
    USFundChinaRegion,

    #[strum(serialize = "US Fund Consumer Cyclical")]
    USFundConsumerCyclical,

    #[strum(serialize = "US Fund Diversified Emerging Mkts")]
    USFundDiversifiedEmergingMkts,

    #[strum(serialize = "US Fund Equity Energy")]
    USFundEquityEnergy,

    #[strum(serialize = "US Fund Equity Precious Metals")]
    USFundEquityPreciousMetals,

    #[strum(serialize = "US Fund Financial")]
    USFundFinancial,

    #[strum(serialize = "US Fund Foreign Large Blend")]
    USFundForeignLargeBlend,

    #[strum(serialize = "US Fund Health")]
    USFundHealth,

    #[strum(serialize = "US Fund Large Blend")]
    USFundLargeBlend,

    #[strum(serialize = "US Fund Large Growth")]
    USFundLargeGrowth,

    #[strum(serialize = "US Fund Large Value")]
    USFundLargeValue,

    #[strum(serialize = "US Fund Miscellaneous Region")]
    USFundMiscellaneousRegion,

    #[strum(serialize = "US Fund Natural Resources")]
    USFundNaturalResources,

    #[strum(serialize = "US Fund Technology")]
    USFundTechnology,

    #[strum(serialize = "US Fund Trading--Leveraged Equity")]
    USFundTradingLeveragedEquity,

    #[strum(serialize = "Utilities")]
    Utilities,
}


#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, EnumString, Display, AsRefStr, IntoStaticStr, EnumIter, VariantNames)]
pub enum FundFamily {
    #[strum(serialize = "ALPS")]
    ALPS,
    #[strum(serialize = "AMG Funds")]
    AMGFunds,
    #[strum(serialize = "AQR Funds")]
    AQRFunds,
    #[strum(serialize = "Aberdeen")]
    Aberdeen,
    #[strum(serialize = "Alger")]
    Alger,
    #[strum(serialize = "AllianceBernstein")]
    AllianceBernstein,
    #[strum(serialize = "Allianz Funds")]
    AllianzFunds,
    #[strum(serialize = "American Beacon")]
    AmericanBeacon,
    #[strum(serialize = "American Century Investments")]
    AmericanCenturyInvestments,
    #[strum(serialize = "American Funds")]
    AmericanFunds,
    #[strum(serialize = "Aquila")]
    Aquila,
    #[strum(serialize = "Artisan")]
    Artisan,
    #[strum(serialize = "BMO Funds")]
    BMOFunds,
    #[strum(serialize = "BNY Mellon Funds")]
    BNYMellonFunds,
    #[strum(serialize = "Baird")]
    Baird,
    #[strum(serialize = "Barclays Funds")]
    BarclaysFunds,
    #[strum(serialize = "Barings Funds")]
    BaringsFunds,
    #[strum(serialize = "Baron Capital Group")]
    BaronCapitalGroup,
    #[strum(serialize = "BlackRock")]
    BlackRock,
    #[strum(serialize = "Brown Advisory Funds")]
    BrownAdvisoryFunds,
    #[strum(serialize = "Calamos")]
    Calamos,
    #[strum(serialize = "Calvert Investments")]
    CalvertInvestments,
    #[strum(serialize = "Catalyst Mutual Funds")]
    CatalystMutualFunds,
    #[strum(serialize = "Cohen & Steers")]
    CohenSteers,
    #[strum(serialize = "Columbia")]
    Columbia,
    #[strum(serialize = "Commerz Funds Solutions SA")]
    CommerzFundsSolutionsSA,
    #[strum(serialize = "Commerzbank AG, Frankfurt am Main")]
    CommerzbankAGFrankfurtAmMain,
    #[strum(serialize = "Davis Funds")]
    DavisFunds,
    #[strum(serialize = "Delaware Investments")]
    DelawareInvestments,
    #[strum(serialize = "Deutsche Asset Management")]
    DeutscheAssetManagement,
    #[strum(serialize = "Deutsche Bank AG")]
    DeutscheBankAG,
    #[strum(serialize = "Diamond Hill Funds")]
    DiamondHillFunds,
    #[strum(serialize = "Dimensional Fund Advisors")]
    DimensionalFundAdvisors,
    #[strum(serialize = "Direxion Funds")]
    DirexionFunds,
    #[strum(serialize = "DoubleLine")]
    DoubleLine,
    #[strum(serialize = "Dreyfus")]
    Dreyfus,
    #[strum(serialize = "Dunham Funds")]
    DunhamFunds,
    #[strum(serialize = "Eagle Funds")]
    EagleFunds,
    #[strum(serialize = "Eaton Vance")]
    EatonVance,
    #[strum(serialize = "Federated")]
    Federated,
    #[strum(serialize = "Fidelity Investments")]
    FidelityInvestments,
    #[strum(serialize = "First Investors")]
    FirstInvestors,
    #[strum(serialize = "First Trust")]
    FirstTrust,
    #[strum(serialize = "Flexshares Trust")]
    FlexsharesTrust,
    #[strum(serialize = "Franklin Templeton Investments")]
    FranklinTempletonInvestments,
    #[strum(serialize = "GMO")]
    GMO,
    #[strum(serialize = "Gabelli")]
    Gabelli,
    #[strum(serialize = "Global X Funds")]
    GlobalXFunds,
    #[strum(serialize = "Goldman Sachs")]
    GoldmanSachs,
    #[strum(serialize = "Great-West Funds")]
    GreatWestFunds,
    #[strum(serialize = "Guggenheim Investments")]
    GuggenheimInvestments,
    #[strum(serialize = "GuideStone Funds")]
    GuideStoneFunds,
    #[strum(serialize = "HSBC")]
    HSBC,
    #[strum(serialize = "Hancock Horizon")]
    HancockHorizon,
    #[strum(serialize = "Harbor")]
    Harbor,
    #[strum(serialize = "Hartford Mutual Funds")]
    HartfordMutualFunds,
    #[strum(serialize = "Henderson Global")]
    HendersonGlobal,
    #[strum(serialize = "Hennessy")]
    Hennessy,
    #[strum(serialize = "Highland Funds")]
    HighlandFunds,
    #[strum(serialize = "ICON Funds")]
    ICONFunds,
    #[strum(serialize = "Invesco")]
    Invesco,
    #[strum(serialize = "Ivy Funds")]
    IvyFunds,
    #[strum(serialize = "JPMorgan")]
    JPMorgan,
    #[strum(serialize = "Janus")]
    Janus,
    #[strum(serialize = "John Hancock")]
    JohnHancock,
    #[strum(serialize = "Lazard")]
    Lazard,
    #[strum(serialize = "Legg Mason")]
    LeggMason,
    #[strum(serialize = "Lord Abbett")]
    LordAbbett,
    #[strum(serialize = "MFS")]
    MFS,
    #[strum(serialize = "Madison Funds")]
    MadisonFunds,
    #[strum(serialize = "MainStay")]
    MainStay,
    #[strum(serialize = "Manning & Napier")]
    ManningNapier,
    #[strum(serialize = "Market Vectors")]
    MarketVectors,
    #[strum(serialize = "MassMutual")]
    MassMutual,
    #[strum(serialize = "Matthews Asia Funds")]
    MatthewsAsiaFunds,
    #[strum(serialize = "Morgan Stanley")]
    MorganStanley,
    #[strum(serialize = "Nationwide")]
    Nationwide,
    #[strum(serialize = "Natixis Funds")]
    NatixisFunds,
    #[strum(serialize = "Neuberger Berman")]
    NeubergerBerman,
    #[strum(serialize = "Northern Funds")]
    NorthernFunds,
    #[strum(serialize = "Nuveen")]
    Nuveen,
    #[strum(serialize = "OppenheimerFunds")]
    OppenheimerFunds,
    #[strum(serialize = "PNC Funds")]
    PNCFunds,
    #[strum(serialize = "Pacific funds series trust")]
    PacificFundsSeriesTrust,
    #[strum(serialize = "Pax World")]
    PaxWorld,
    #[strum(serialize = "Paydenfunds")]
    Paydenfunds,
    #[strum(serialize = "Pimco")]
    Pimco,
    #[strum(serialize = "Pioneer Investments")]
    PioneerInvestments,
    #[strum(serialize = "PowerShares")]
    PowerShares,
    #[strum(serialize = "Principal Funds")]
    PrincipalFunds,
    #[strum(serialize = "ProFunds")]
    ProFunds,
    #[strum(serialize = "ProShares")]
    ProShares,
    #[strum(serialize = "Prudential Investments")]
    PrudentialInvestments,
    #[strum(serialize = "Putnam")]
    Putnam,
    #[strum(serialize = "RBC Global Asset Management")]
    RBCGlobalAssetManagement,
    #[strum(serialize = "RidgeWorth")]
    RidgeWorth,
    #[strum(serialize = "Royce")]
    Royce,
    #[strum(serialize = "Russell")]
    Russell,
    #[strum(serialize = "Rydex Funds")]
    RydexFunds,
    #[strum(serialize = "SEI")]
    SEI,
    #[strum(serialize = "SPDR State Street Global Advisors")]
    SPDRStateStreetGlobalAdvisors,
    #[strum(serialize = "Salient Funds")]
    SalientFunds,
    #[strum(serialize = "Saratoga")]
    Saratoga,
    #[strum(serialize = "Schwab Funds")]
    SchwabFunds,
    #[strum(serialize = "Sentinel")]
    Sentinel,
    #[strum(serialize = "Shelton Capital Management")]
    SheltonCapitalManagement,
    #[strum(serialize = "State Farm")]
    StateFarm,
    #[strum(serialize = "State Street Global Advisors (Chicago)")]
    StateStreetGlobalAdvisorsChicago,
    #[strum(serialize = "Sterling Capital Funds")]
    SterlingCapitalFunds,
    #[strum(serialize = "SunAmerica")]
    SunAmerica,
    #[strum(serialize = "T. Rowe Price")]
    TRowePrice,
    #[strum(serialize = "TCW")]
    TCW,
    #[strum(serialize = "TIAA-CREF Asset Management")]
    TIAACREFAsssetManagement,
    #[strum(serialize = "Teton Westwood Funds")]
    TetonWestwoodFunds,
    #[strum(serialize = "Thornburg")]
    Thornburg,
    #[strum(serialize = "Thrivent")]
    Thrivent,
    #[strum(serialize = "Timothy Plan")]
    TimothyPlan,
    #[strum(serialize = "Touchstone")]
    Touchstone,
    #[strum(serialize = "Transamerica")]
    Transamerica,
    #[strum(serialize = "UBS")]
    UBS,
    #[strum(serialize = "UBS Group AG")]
    UBSGroupAG,
    #[strum(serialize = "USAA")]
    USAA,
    #[strum(serialize = "VALIC")]
    VALIC,
    #[strum(serialize = "Vanguard")]
    Vanguard,
    #[strum(serialize = "Vantagepoint Funds")]
    VantagepointFunds,
    #[strum(serialize = "Victory")]
    Victory,
    #[strum(serialize = "Virtus")]
    Virtus,
    #[strum(serialize = "Voya")]
    Voya,
    #[strum(serialize = "Waddell & Reed")]
    WaddellReed,
    #[strum(serialize = "Wasatch")]
    Wasatch,
    #[strum(serialize = "Wells Fargo Funds")]
    WellsFargoFunds,
    #[strum(serialize = "William Blair")]
    WilliamBlair,
    #[strum(serialize = "WisdomTree")]
    WisdomTree,
}


#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, EnumString, Display, AsRefStr, IntoStaticStr, EnumIter, EnumProperty, VariantNames)]
pub enum Industry {
    // Basic Materials
    #[strum(serialize = "Agricultural Inputs", props(sector = "Basic Materials"))]
    AgriculturalInputs,
    #[strum(serialize = "Building Materials", props(sector = "Basic Materials"))]
    BuildingMaterials,
    #[strum(serialize = "Chemicals", props(sector = "Basic Materials"))]
    Chemicals,
    #[strum(serialize = "Specialty Chemicals", props(sector = "Basic Materials"))]
    SpecialtyChemicals,
    #[strum(serialize = "Lumber & Wood Production", props(sector = "Basic Materials"))]
    LumberAndWoodProduction,
    #[strum(serialize = "Paper & Paper Products", props(sector = "Basic Materials"))]
    PaperAndPaperProducts,
    #[strum(serialize = "Aluminum", props(sector = "Basic Materials"))]
    Aluminum,
    #[strum(serialize = "Copper", props(sector = "Basic Materials"))]
    Copper,
    #[strum(serialize = "Other Industrial Metals & Mining", props(sector = "Basic Materials"))]
    OtherIndustrialMetalsAndMining,
    #[strum(serialize = "Gold", props(sector = "Basic Materials"))]
    Gold,
    #[strum(serialize = "Silver", props(sector = "Basic Materials"))]
    Silver,
    #[strum(serialize = "Other Precious Metals & Mining", props(sector = "Basic Materials"))]
    OtherPreciousMetalsAndMining,
    #[strum(serialize = "Coking Coal", props(sector = "Basic Materials"))]
    CokingCoal,
    #[strum(serialize = "Steel", props(sector = "Basic Materials"))]
    Steel,

    // Consumer Cyclical
    #[strum(serialize = "Auto & Truck Dealerships", props(sector = "Consumer Cyclical"))]
    AutoAndTruckDealerships,
    #[strum(serialize = "Auto Manufacturers", props(sector = "Consumer Cyclical"))]
    AutoManufacturers,
    #[strum(serialize = "Auto Parts", props(sector = "Consumer Cyclical"))]
    AutoParts,
    #[strum(serialize = "Recreational Vehicles", props(sector = "Consumer Cyclical"))]
    RecreationalVehicles,
    #[strum(serialize = "Furnishings, Fixtures & Appliances", props(sector = "Consumer Cyclical"))]
    FurnishingsFixturesAndAppliances,
    #[strum(serialize = "Residential Construction", props(sector = "Consumer Cyclical"))]
    ResidentialConstruction,
    #[strum(serialize = "Textile Manufacturing", props(sector = "Consumer Cyclical"))]
    TextileManufacturing,
    #[strum(serialize = "Apparel Manufacturing", props(sector = "Consumer Cyclical"))]
    ApparelManufacturing,
    #[strum(serialize = "Footwear & Accessories", props(sector = "Consumer Cyclical"))]
    FootwearAndAccessories,
    #[strum(serialize = "Packaging & Containers", props(sector = "Consumer Cyclical"))]
    PackagingAndContainers,
    #[strum(serialize = "Personal Services", props(sector = "Consumer Cyclical"))]
    PersonalServices,
    #[strum(serialize = "Restaurants", props(sector = "Consumer Cyclical"))]
    Restaurants,
    #[strum(serialize = "Apparel Retail", props(sector = "Consumer Cyclical"))]
    ApparelRetail,
    #[strum(serialize = "Department Stores", props(sector = "Consumer Cyclical"))]
    DepartmentStores,
    #[strum(serialize = "Home Improvement Retail", props(sector = "Consumer Cyclical"))]
    HomeImprovementRetail,
    #[strum(serialize = "Luxury Goods", props(sector = "Consumer Cyclical"))]
    LuxuryGoods,
    #[strum(serialize = "Internet Retail", props(sector = "Consumer Cyclical"))]
    InternetRetail,
    #[strum(serialize = "Specialty Retail", props(sector = "Consumer Cyclical"))]
    SpecialtyRetail,
    #[strum(serialize = "Gambling", props(sector = "Consumer Cyclical"))]
    Gambling,
    #[strum(serialize = "Leisure", props(sector = "Consumer Cyclical"))]
    Leisure,
    #[strum(serialize = "Lodging", props(sector = "Consumer Cyclical"))]
    Lodging,
    #[strum(serialize = "Resorts & Casinos", props(sector = "Consumer Cyclical"))]
    ResortsAndCasinos,
    #[strum(serialize = "Travel Services", props(sector = "Consumer Cyclical"))]
    TravelServices,

    // Financial Services
    #[strum(serialize = "Asset Management", props(sector = "Financial Services"))]
    AssetManagement,
    #[strum(serialize = "Banks - Diversified", props(sector = "Financial Services"))]
    BanksDiversified,
    #[strum(serialize = "Banks - Regional", props(sector = "Financial Services"))]
    BanksRegional,
    #[strum(serialize = "Mortgage Finance", props(sector = "Financial Services"))]
    MortgageFinance,
    #[strum(serialize = "Capital Markets", props(sector = "Financial Services"))]
    CapitalMarkets,
    #[strum(serialize = "Financial Data & Stock Exchanges", props(sector = "Financial Services"))]
    FinancialDataAndStockExchanges,
    #[strum(serialize = "Insurance - Life", props(sector = "Financial Services"))]
    InsuranceLife,
    #[strum(serialize = "Insurance - Property & Casualty", props(sector = "Financial Services"))]
    InsurancePropertyAndCasualty,
    #[strum(serialize = "Insurance - Reinsurance", props(sector = "Financial Services"))]
    InsuranceReinsurance,
    #[strum(serialize = "Insurance - Specialty", props(sector = "Financial Services"))]
    InsuranceSpecialty,
    #[strum(serialize = "Insurance Brokers", props(sector = "Financial Services"))]
    InsuranceBrokers,
    #[strum(serialize = "Insurance - Diversified", props(sector = "Financial Services"))]
    InsuranceDiversified,
    #[strum(serialize = "Shell Companies", props(sector = "Financial Services"))]
    ShellCompanies,
    #[strum(serialize = "Financial Conglomerates", props(sector = "Financial Services"))]
    FinancialConglomerates,
    #[strum(serialize = "Credit Services", props(sector = "Financial Services"))]
    CreditServices,

    // Real Estate
    #[strum(serialize = "Real Estate - Development", props(sector = "Real Estate"))]
    RealEstateDevelopment,
    #[strum(serialize = "Real Estate Services", props(sector = "Real Estate"))]
    RealEstateServices,
    #[strum(serialize = "Real Estate - Diversified", props(sector = "Real Estate"))]
    RealEstateDiversified,
    #[strum(serialize = "REIT - Healthcare Facilities", props(sector = "Real Estate"))]
    ReitHealthcareFacilities,
    #[strum(serialize = "REIT - Hotel & Motel", props(sector = "Real Estate"))]
    ReitHotelAndMotel,
    #[strum(serialize = "REIT - Industrial", props(sector = "Real Estate"))]
    ReitIndustrial,
    #[strum(serialize = "REIT - Office", props(sector = "Real Estate"))]
    ReitOffice,
    #[strum(serialize = "REIT - Residential", props(sector = "Real Estate"))]
    ReitResidential,
    #[strum(serialize = "REIT - Retail", props(sector = "Real Estate"))]
    ReitRetail,
    #[strum(serialize = "REIT - Mortgage", props(sector = "Real Estate"))]
    ReitMortgage,
    #[strum(serialize = "REIT - Specialty", props(sector = "Real Estate"))]
    ReitSpecialty,
    #[strum(serialize = "REIT - Diversified", props(sector = "Real Estate"))]
    ReitDiversified,

    // Healthcare
    #[strum(serialize = "Biotechnology", props(sector = "Healthcare"))]
    Biotechnology,
    #[strum(serialize = "Drug Manufacturers - General", props(sector = "Healthcare"))]
    DrugManufacturersGeneral,
    #[strum(serialize = "Drug Manufacturers - Specialty & Generic", props(sector = "Healthcare"))]
    DrugManufacturersSpecialtyAndGeneric,
    #[strum(serialize = "Healthcare Plans", props(sector = "Healthcare"))]
    HealthcarePlans,
    #[strum(serialize = "Medical Care Facilities", props(sector = "Healthcare"))]
    MedicalCareFacilities,
    #[strum(serialize = "Pharmaceutical Retailers", props(sector = "Healthcare"))]
    PharmaceuticalRetailers,
    #[strum(serialize = "Health Information Services", props(sector = "Healthcare"))]
    HealthInformationServices,
    #[strum(serialize = "Medical Devices", props(sector = "Healthcare"))]
    MedicalDevices,
    #[strum(serialize = "Medical Instruments & Supplies", props(sector = "Healthcare"))]
    MedicalInstrumentsAndSupplies,
    #[strum(serialize = "Diagnostics & Research", props(sector = "Healthcare"))]
    DiagnosticsAndResearch,
    #[strum(serialize = "Medical Distribution", props(sector = "Healthcare"))]
    MedicalDistribution,

    // Energy
    #[strum(serialize = "Oil & Gas Drilling", props(sector = "Energy"))]
    OilAndGasDrilling,
    #[strum(serialize = "Oil & Gas E&P", props(sector = "Energy"))]
    OilAndGasEP,
    #[strum(serialize = "Oil & Gas Integrated", props(sector = "Energy"))]
    OilAndGasIntegrated,
    #[strum(serialize = "Oil & Gas Midstream", props(sector = "Energy"))]
    OilAndGasMidstream,
    #[strum(serialize = "Oil & Gas Refining & Marketing", props(sector = "Energy"))]
    OilAndGasRefiningAndMarketing,
    #[strum(serialize = "Oil & Gas Equipment & Services", props(sector = "Energy"))]
    OilAndGasEquipmentAndServices,
    #[strum(serialize = "Thermal Coal", props(sector = "Energy"))]
    ThermalCoal,
    #[strum(serialize = "Uranium", props(sector = "Energy"))]
    Uranium,

    // Utilities
    #[strum(serialize = "Utilities - Independent Power Producers", props(sector = "Utilities"))]
    UtilitiesIndependentPowerProducers,
    #[strum(serialize = "Utilities - Renewable", props(sector = "Utilities"))]
    UtilitiesRenewable,
    #[strum(serialize = "Utilities - Regulated Water", props(sector = "Utilities"))]
    UtilitiesRegulatedWater,
    #[strum(serialize = "Utilities - Regulated Electric", props(sector = "Utilities"))]
    UtilitiesRegulatedElectric,
    #[strum(serialize = "Utilities - Regulated Gas", props(sector = "Utilities"))]
    UtilitiesRegulatedGas,
    #[strum(serialize = "Utilities - Diversified", props(sector = "Utilities"))]
    UtilitiesDiversified,

    // Communication Services
    #[strum(serialize = "Telecom Services", props(sector = "Communication Services"))]
    TelecomServices,
    #[strum(serialize = "Advertising Agencies", props(sector = "Communication Services"))]
    AdvertisingAgencies,
    #[strum(serialize = "Publishing", props(sector = "Communication Services"))]
    Publishing,
    #[strum(serialize = "Broadcasting", props(sector = "Communication Services"))]
    Broadcasting,
    #[strum(serialize = "Entertainment", props(sector = "Communication Services"))]
    Entertainment,
    #[strum(serialize = "Internet Content & Information", props(sector = "Communication Services"))]
    InternetContentAndInformation,
    #[strum(serialize = "Electronic Gaming & Multimedia", props(sector = "Communication Services"))]
    ElectronicGamingAndMultimedia,

    // Technology
    #[strum(serialize = "Information Technology Services", props(sector = "Technology"))]
    InformationTechnologyServices,
    #[strum(serialize = "Software - Application", props(sector = "Technology"))]
    SoftwareApplication,
    #[strum(serialize = "Software - Infrastructure", props(sector = "Technology"))]
    SoftwareInfrastructure,
    #[strum(serialize = "Communication Equipment", props(sector = "Technology"))]
    CommunicationEquipment,
    #[strum(serialize = "Computer Hardware", props(sector = "Technology"))]
    ComputerHardware,
    #[strum(serialize = "Consumer Electronics", props(sector = "Technology"))]
    ConsumerElectronics,
    #[strum(serialize = "Electronic Components", props(sector = "Technology"))]
    ElectronicComponents,
    #[strum(serialize = "Electronics & Computer Distribution", props(sector = "Technology"))]
    ElectronicsAndComputerDistribution,
    #[strum(serialize = "Scientific & Technical Instruments", props(sector = "Technology"))]
    ScientificAndTechnicalInstruments,
    #[strum(serialize = "Semiconductor Equipment & Materials", props(sector = "Technology"))]
    SemiconductorEquipmentAndMaterials,
    #[strum(serialize = "Semiconductors", props(sector = "Technology"))]
    Semiconductors,
    #[strum(serialize = "Solar", props(sector = "Technology"))]
    Solar,
}

impl Industry {
    pub fn sector(&self) -> &'static str {
        self.get_str("sector").unwrap()
    }
}


#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, EnumString, Display, AsRefStr, IntoStaticStr, EnumIter, VariantNames)]
pub enum FundCategory {
    #[strum(serialize = "Allocation - 15% to 30% Equity")]
    Allocation15to30Equity,
    #[strum(serialize = "Allocation - 30% to 50% Equity")]
    Allocation30to50Equity,
    #[strum(serialize = "Allocation - 50% to 70% Equity")]
    Allocation50to70Equity,
    #[strum(serialize = "Allocation - 70% to 85% Equity")]
    Allocation70to85Equity,
    #[strum(serialize = "Allocation - 85%+ Equity")]
    Allocation85PlusEquity,
    #[strum(serialize = "Bank Loan")]
    BankLoan,
    #[strum(serialize = "Bear Market")]
    BearMarket,
    #[strum(serialize = "China Region")]
    ChinaRegion,
    #[strum(serialize = "Commodities Agriculture")]
    CommoditiesAgriculture,
    #[strum(serialize = "Commodities Broad Basket")]
    CommoditiesBroadBasket,
    #[strum(serialize = "Convertibles")]
    Convertibles,
    #[strum(serialize = "Corporate Bond")]
    CorporateBond,
    #[strum(serialize = "Diversified Emerging Mkts")]
    DiversifiedEmergingMkts,
    #[strum(serialize = "Diversified Pacific/Asia")]
    DiversifiedPacificAsia,
    #[strum(serialize = "Emerging Markets Bond")]
    EmergingMarketsBond,
    #[strum(serialize = "Emerging-Markets Local-Currency Bond")]
    EmergingMarketsLocalCurrencyBond,
    #[strum(serialize = "Energy Limited Partnership")]
    EnergyLimitedPartnership,
    #[strum(serialize = "Equity Energy")]
    EquityEnergy,
    #[strum(serialize = "Equity Precious Metals")]
    EquityPreciousMetals,
    #[strum(serialize = "Europe Stock")]
    EuropeStock,
    #[strum(serialize = "Financial")]
    Financial,
    #[strum(serialize = "Foreign Large Blend")]
    ForeignLargeBlend,
    #[strum(serialize = "Foreign Large Growth")]
    ForeignLargeGrowth,
    #[strum(serialize = "Foreign Large Value")]
    ForeignLargeValue,
    #[strum(serialize = "Foreign Small/Mid Blend")]
    ForeignSmallMidBlend,
    #[strum(serialize = "Foreign Small/Mid Growth")]
    ForeignSmallMidGrowth,
    #[strum(serialize = "Foreign Small/Mid Value")]
    ForeignSmallMidValue,
    #[strum(serialize = "Global Real Estate")]
    GlobalRealEstate,
    #[strum(serialize = "Health")]
    Health,
    #[strum(serialize = "High Yield Bond")]
    HighYieldBond,
    #[strum(serialize = "High Yield Muni")]
    HighYieldMuni,
    #[strum(serialize = "Inflation-Protected Bond")]
    InflationProtectedBond,
    #[strum(serialize = "Infrastructure")]
    Infrastructure,
    #[strum(serialize = "Intermediate Government")]
    IntermediateGovernment,
    #[strum(serialize = "Intermediate-Term Bond")]
    IntermediateTermBond,
    #[strum(serialize = "Japan Stock")]
    JapanStock,
    #[strum(serialize = "Large Blend")]
    LargeBlend,
    #[strum(serialize = "Large Growth")]
    LargeGrowth,
    #[strum(serialize = "Large Value")]
    LargeValue,
    #[strum(serialize = "Long Government")]
    LongGovernment,
    #[strum(serialize = "Long-Short Credit")]
    LongShortCredit,
    #[strum(serialize = "Long-Short Equity")]
    LongShortEquity,
    #[strum(serialize = "Long-Term Bond")]
    LongTermBond,
    #[strum(serialize = "Managed Futures")]
    ManagedFutures,
    #[strum(serialize = "Market Neutral")]
    MarketNeutral,
    #[strum(serialize = "Mid-Cap Blend")]
    MidCapBlend,
    #[strum(serialize = "Mid-Cap Growth")]
    MidCapGrowth,
    #[strum(serialize = "Mid-Cap Value")]
    MidCapValue,
    #[strum(serialize = "Miscellaneous Region")]
    MiscellaneousRegion,
    #[strum(serialize = "Multialternative")]
    Multialternative,
    #[strum(serialize = "Multicurrency")]
    Multicurrency,
    #[strum(serialize = "Multisector Bond")]
    MultisectorBond,
    #[strum(serialize = "Muni California Intermediate")]
    MuniCaliforniaIntermediate,
    #[strum(serialize = "Muni California Long")]
    MuniCaliforniaLong,
    #[strum(serialize = "Muni Massachusetts")]
    MuniMassachusetts,
    #[strum(serialize = "Muni Minnesota")]
    MuniMinnesota,
    #[strum(serialize = "Muni National Interm")]
    MuniNationalInterm,
    #[strum(serialize = "Muni National Long")]
    MuniNationalLong,
    #[strum(serialize = "Muni National Short")]
    MuniNationalShort,
    #[strum(serialize = "Muni New Jersey")]
    MuniNewJersey,
    #[strum(serialize = "Muni New York Intermediate")]
    MuniNewYorkIntermediate,
    #[strum(serialize = "Muni New York Long")]
    MuniNewYorkLong,
    #[strum(serialize = "Muni Ohio")]
    MuniOhio,
    #[strum(serialize = "Muni Pennsylvania")]
    MuniPennsylvania,
    #[strum(serialize = "Muni Single State Interm")]
    MuniSingleStateInterm,
    #[strum(serialize = "Muni Single State Long")]
    MuniSingleStateLong,
    #[strum(serialize = "Muni Single State Short")]
    MuniSingleStateShort,
    #[strum(serialize = "Natural Resources")]
    NaturalResources,
    #[strum(serialize = "Nontraditional Bond")]
    NontraditionalBond,
    #[strum(serialize = "Option Writing")]
    OptionWriting,
    #[strum(serialize = "Other")]
    Other,
    #[strum(serialize = "Other Allocation")]
    OtherAllocation,
    #[strum(serialize = "Pacific/Asia ex-Japan Stk")]
    PacificAsiaExJapanStk,
    #[strum(serialize = "Preferred Stock")]
    PreferredStock,
    #[strum(serialize = "Real Estate")]
    RealEstate,
    #[strum(serialize = "Short Government")]
    ShortGovernment,
    #[strum(serialize = "Short-Term Bond")]
    ShortTermBond,
    #[strum(serialize = "Small Blend")]
    SmallBlend,
    #[strum(serialize = "Small Growth")]
    SmallGrowth,
    #[strum(serialize = "Small Value")]
    SmallValue,
    #[strum(serialize = "Tactical Allocation")]
    TacticalAllocation,
    #[strum(serialize = "Target-Date 2000-2010")]
    TargetDate20002010,
    #[strum(serialize = "Target-Date 2015")]
    TargetDate2015,
    #[strum(serialize = "Target-Date 2020")]
    TargetDate2020,
    #[strum(serialize = "Target-Date 2025")]
    TargetDate2025,
    #[strum(serialize = "Target-Date 2030")]
    TargetDate2030,
    #[strum(serialize = "Target-Date 2035")]
    TargetDate2035,
    #[strum(serialize = "Target-Date 2040")]
    TargetDate2040,
    #[strum(serialize = "Target-Date 2045")]
    TargetDate2045,
    #[strum(serialize = "Target-Date 2050")]
    TargetDate2050,
    #[strum(serialize = "Target-Date 2055")]
    TargetDate2055,
    #[strum(serialize = "Target-Date 2060+")]
    TargetDate2060Plus,
    #[strum(serialize = "Target-Date Retirement")]
    TargetDateRetirement,
    #[strum(serialize = "Technology")]
    Technology,
    #[strum(serialize = "Trading - Leveraged/Inverse Commodities")]
    TradingLeveragedInverseCommodities,
    #[strum(serialize = "Trading - Leveraged/Inverse Equity")]
    TradingLeveragedInverseEquity,
    #[strum(serialize = "Trading - Inverse Equity")]
    TradingInverseEquity,
    #[strum(serialize = "Trading - Leveraged Equity")]
    TradingLeveragedEquity,
    #[strum(serialize = "Ultrashort Bond")]
    UltrashortBond,
    #[strum(serialize = "Utilities")]
    Utilities,
    #[strum(serialize = "World Allocation")]
    WorldAllocation,
    #[strum(serialize = "World Bond")]
    WorldBond,
    #[strum(serialize = "World Stock")]
    WorldStock,
}