etradeTaxReturnHelper 0.7.5

Parses etrade and revolut financial documents for transaction details (income, tax paid, cost basis) and compute total income and total tax paid according to chosen tax residency (currency)
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
// SPDX-FileCopyrightText: 2022-2025 RustInFinance
// SPDX-License-Identifier: BSD-3-Clause

use pdf::file::File;
use pdf::object::PageRc;
use pdf::primitive::Primitive;

pub use crate::logging::ResultExt;

#[derive(Clone, Debug, PartialEq)]
enum StatementType {
    UnknownDocument,
    BrokerageStatement,
    AccountStatement,
}

#[derive(Clone, Debug, PartialEq)]
enum TransactionType {
    Interests,
    Dividends,
    Sold,
    Tax,
    Trade,
}

#[derive(Debug, PartialEq)]
enum ParserState {
    SearchingYear,
    ProcessingYear,
    SearchingCashFlowBlock,
    SearchingTransactionEntry,
    ProcessingTransaction(TransactionType),
}

pub trait Entry {
    fn parse(&mut self, pstr: &pdf::primitive::PdfString);
    fn getf32(&self) -> Option<f32> {
        None
    }
    fn geti32(&self) -> Option<i32> {
        None
    }

    fn getdate(&self) -> Option<String> {
        None
    }
    fn getstring(&self) -> Option<String> {
        None
    }

    fn is_pattern(&self) -> bool {
        false
    }
}

struct F32Entry {
    pub val: f32,
}

impl Entry for F32Entry {
    fn parse(&mut self, pstr: &pdf::primitive::PdfString) {
        let mystr = pstr
            .clone()
            .into_string()
            .expect(&format!("Error parsing : {:#?} to f32", pstr));
        // Extracted string should have "," removed and then be parsed
        self.val = mystr
            .trim()
            .replace(",", "")
            .replace("(", "")
            .replace(")", "")
            .replace("$", "")
            .parse::<f32>()
            .expect(&format!("Error parsing : {} to f32", mystr));
        log::info!("Parsed f32 value: {}", self.val);
    }
    fn getf32(&self) -> Option<f32> {
        Some(self.val)
    }
}

struct I32Entry {
    pub val: i32,
}

impl Entry for I32Entry {
    fn parse(&mut self, pstr: &pdf::primitive::PdfString) {
        let mystr = pstr
            .clone()
            .into_string()
            .expect(&format!("Error parsing : {:#?} to i32", pstr));
        self.val = mystr
            .parse::<i32>()
            .expect(&format!("Error parsing : {} to i32", mystr));
        log::info!("Parsed i32 value: {}", self.val);
    }
    fn geti32(&self) -> Option<i32> {
        Some(self.val)
    }
}

struct DateEntry {
    pub val: String,
}

impl Entry for DateEntry {
    fn parse(&mut self, pstr: &pdf::primitive::PdfString) {
        let mystr = pstr
            .clone()
            .into_string()
            .expect(&format!("Error parsing : {:#?} to Data", pstr));

        if chrono::NaiveDate::parse_from_str(&mystr, "%m/%d/%y").is_ok() {
            self.val = mystr;
            log::info!("Parsed date value: {}", self.val);
        }
    }
    fn getdate(&self) -> Option<String> {
        Some(self.val.clone())
    }
}

struct StringEntry {
    pub val: String,
    pub patterns: Vec<String>,
}

impl Entry for StringEntry {
    fn parse(&mut self, pstr: &pdf::primitive::PdfString) {
        self.val = pstr
            .clone()
            .into_string()
            .expect(&format!("Error parsing : {:#?} to String", pstr));
        log::info!("Parsed String value: {}", self.val);
    }
    fn getstring(&self) -> Option<String> {
        Some(self.val.clone())
    }
    // Either match parsed token against any of patterns or in case no patterns are there
    // just return match (true)
    fn is_pattern(&self) -> bool {
        self.patterns.len() == 0 || self.patterns.iter().find(|&x| self.val == *x).is_some()
    }
}

fn create_dividend_parsing_sequence(sequence: &mut std::collections::VecDeque<Box<dyn Entry>>) {
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec!["INTC".to_owned(), "DLB".to_owned()],
    })); // INTC, DLB
    sequence.push_back(Box::new(F32Entry { val: 0.0 })); // Tax Entry
    sequence.push_back(Box::new(F32Entry { val: 0.0 })); // Income Entry
}

fn create_tax_parsing_sequence(sequence: &mut std::collections::VecDeque<Box<dyn Entry>>) {
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec![
            "TREASURY LIQUIDITY FUND".to_owned(),
            "INTEL CORP".to_owned(),
            "ADVANCED MICRO DEVICES".to_owned(),
        ],
    }));
    sequence.push_back(Box::new(F32Entry { val: 0.0 })); // Tax Entry
}

fn create_tax_withholding_adjusted_parsing_sequence(
    sequence: &mut std::collections::VecDeque<Box<dyn Entry>>,
) {
    // Description
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec![],
    }));
    // Comment
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec![],
    }));
    // Money returned to tax-payer
    sequence.push_back(Box::new(F32Entry { val: 0.0 }));
}

fn create_interests_fund_parsing_sequence(
    sequence: &mut std::collections::VecDeque<Box<dyn Entry>>,
) {
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec!["TREASURY LIQUIDITY FUND".to_owned()],
    }));
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec![
            "DIV PAYMENT".to_owned(),
            "Transaction Reportable for the Prior Year.".to_owned(),
        ],
    }));
    sequence.push_back(Box::new(F32Entry { val: 0.0 })); // Income Entry
}

fn create_interest_adjustment_parsing_sequence(
    sequence: &mut std::collections::VecDeque<Box<dyn Entry>>,
) {
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec![],
    }));
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec![],
    }));
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec![],
    }));
    sequence.push_back(Box::new(F32Entry { val: 0.0 })); // Income Entry
}

fn create_qualified_dividend_parsing_sequence(
    sequence: &mut std::collections::VecDeque<Box<dyn Entry>>,
) {
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec!["INTEL CORP".to_owned()],
    }));
    sequence.push_back(Box::new(F32Entry { val: 0.0 })); // Income Entry
}

fn create_sold_parsing_sequence(sequence: &mut std::collections::VecDeque<Box<dyn Entry>>) {
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec!["INTC".to_owned(), "DLB".to_owned()],
    })); // INTC, DLB
    sequence.push_back(Box::new(F32Entry { val: 0.0 })); // Quantity
    sequence.push_back(Box::new(F32Entry { val: 0.0 })); // Price
    sequence.push_back(Box::new(F32Entry { val: 0.0 })); // Amount Sold
}

fn create_sold_2_parsing_sequence(sequence: &mut std::collections::VecDeque<Box<dyn Entry>>) {
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec!["INTEL CORP".to_owned(), "ADVANCED MICRO DEVICES".to_owned()],
    }));
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec!["ACTED AS AGENT".to_owned()],
    }));
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec!["UNSOLICITED TRADE".to_owned()],
    }));
    sequence.push_back(Box::new(F32Entry { val: 0.0 })); // Quantity
    sequence.push_back(Box::new(F32Entry { val: 0.0 })); // Price
    sequence.push_back(Box::new(F32Entry { val: 0.0 })); // Amount Sold
}

fn create_trade_parsing_sequence(sequence: &mut std::collections::VecDeque<Box<dyn Entry>>) {
    sequence.push_back(Box::new(DateEntry { val: String::new() })); // Trade date
    sequence.push_back(Box::new(DateEntry { val: String::new() })); // Settlement date
    sequence.push_back(Box::new(I32Entry { val: 0 })); // MKT /
    sequence.push_back(Box::new(I32Entry { val: 0 })); // / CPT
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec!["INTC".to_owned()],
    }));
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec!["SELL".to_owned()],
    }));
    sequence.push_back(Box::new(I32Entry { val: 0 })); // Quantity
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec!["$".to_owned()],
    })); // $...
    sequence.push_back(Box::new(F32Entry { val: 0.0 })); // ..<price>
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec!["Stock".to_owned()],
    }));
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec!["Plan".to_owned()],
    }));
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec!["PRINCIPAL".to_owned()],
    }));
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec!["$".to_owned()],
    })); // $...
    sequence.push_back(Box::new(F32Entry { val: 0.0 })); // ..<principal>
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec!["INTEL".to_owned()],
    }));
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec!["CORP".to_owned()],
    }));
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec!["COMMISSION".to_owned()],
    }));
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec!["$".to_owned()],
    })); // $...
    sequence.push_back(Box::new(F32Entry { val: 0.0 })); // ..<commission>
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec!["FEE".to_owned()],
    }));
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec!["$".to_owned()],
    })); // $...
    sequence.push_back(Box::new(F32Entry { val: 0.0 })); // ..<fee>
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec!["NET".to_owned()],
    }));
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec!["AMOUNT".to_owned()],
    }));
    sequence.push_back(Box::new(StringEntry {
        val: String::new(),
        patterns: vec!["$".to_owned()],
    })); // $...
    sequence.push_back(Box::new(F32Entry { val: 0.0 })); // ..<net amount>
}

fn yield_sold_transaction(
    transaction: &mut std::slice::Iter<'_, Box<dyn Entry>>,
    transaction_dates: &mut Vec<String>,
) -> Option<(String, String, f32, f32, f32, Option<String>)> {
    let symbol = transaction
        .next()
        .unwrap()
        .getstring()
        .expect_and_log("Processing of Sold transaction went wrong");
    let quantity = transaction
        .next()
        .unwrap()
        .getf32()
        .expect_and_log("Processing of Sold transaction went wrong");
    let price = transaction
        .next()
        .unwrap()
        .getf32()
        .expect_and_log("Processing of Sold transaction went wrong");
    let amount_sold = transaction
        .next()
        .unwrap()
        .getf32()
        .expect_and_log("Parsing of Sold transaction went wrong");
    // Last transaction date is settlement date
    // next to last is trade date
    let (trade_date, settlement_date) = match transaction_dates.len() {
        1 => {
            log::info!("Detected unsettled sold transaction. Skipping");
            return None;
        }
        0 => {
            log::error!(
                "Error parsing transaction & settlement dates. Number of parsed dates: {}",
                transaction_dates.len()
            );
            panic!("Error processing sold transaction. Exitting!")
        }
        _ => {
            let settlement_date = transaction_dates
                .pop()
                .expect("Error: missing trade date when parsing");
            let trade_date = transaction_dates
                .pop()
                .expect("Error: missing settlement_date when parsing");
            (trade_date, settlement_date)
        }
    };

    Some((
        trade_date,
        settlement_date,
        quantity,
        price,
        amount_sold,
        Some(symbol),
    ))
}

/// Recognize whether PDF document is of Brokerage Statement type (old e-trade type of PDF
/// document) or maybe Single account statment (newer e-trade/morgan stanley type of document)
fn recognize_statement(page: PageRc) -> Result<StatementType, String> {
    log::info!("Starting to recognize PDF document type");
    let contents = page
        .contents
        .as_ref()
        .ok_or("Unable to get content of first PDF page")?;

    let mut statement_type = StatementType::UnknownDocument;
    contents.operations.iter().try_for_each(|op| {
        log::trace!("Detected PDF command: {}",op.operator);
        match op.operator.as_ref() {
            "TJ" => {
                // Text show
                if op.operands.len() > 0 {
                    //transaction_date = op.operands[0];
                    let a = &op.operands[0];
                    log::trace!("Detected PDF text object: {a}");
                    match a {
                        Primitive::Array(c) => {
                            for e in c {
                                if let Primitive::String(actual_string) = e {
                                    let raw_string = actual_string.clone().into_string();
                                    let rust_string = if let Ok(r) = raw_string {
                                        r.trim().to_uppercase()
                                    } else {
                                        "".to_owned()
                                    };
                                    if rust_string.contains("ACCT:")  {
                                        statement_type = StatementType::BrokerageStatement;
                                        log::info!("PDF parser recognized Brokerage Statement document by finding: \"{rust_string}\"");
                                        return Ok(());
                                    }
                                }
                            }
                        }
                        _ => (),
                    }
                }
            },
            "Tj" => {
                // Text show
                if op.operands.len() > 0 {
                    //transaction_date = op.operands[0];
                    let a = &op.operands[0];
                    log::info!("Detected PDF text object: {a}");
                    match a {
                        Primitive::String(actual_string) => {
                            let raw_string = actual_string.clone().into_string();
                            let rust_string = if let Ok(r) = raw_string {
                                r.trim().to_uppercase()
                            } else {
                                "".to_owned()
                            };

                            if rust_string == "CLIENT STATEMENT" {
                                statement_type = StatementType::AccountStatement;
                                log::info!("PDF parser recognized Account Statement document by finding: \"{rust_string}\"");
                                return Ok(());
                            }
                        },

                        _ => (),
                    }
                }
            }
            _ => {}
        }
        Ok::<(),String>(())
    })?;

    Ok(statement_type)
}

fn process_transaction(
    interests_transactions: &mut Vec<(String, f32, f32)>,
    div_transactions: &mut Vec<(String, f32, f32, Option<String>)>,
    sold_transactions: &mut Vec<(String, String, f32, f32, f32, Option<String>)>,
    actual_string: &pdf::primitive::PdfString,
    transaction_dates: &mut Vec<String>,
    processed_sequence: &mut Vec<Box<dyn Entry>>,
    sequence: &mut std::collections::VecDeque<Box<dyn Entry>>,
    transaction_type: TransactionType,
) -> Result<ParserState, String> {
    let state;
    let possible_obj = sequence.pop_front();
    match possible_obj {
        // Move executed parser objects into Vector
        // attach only i32 and f32 elements to
        // processed queue
        Some(mut obj) => {
            obj.parse(actual_string);
            // attach to sequence the same string parser if pattern is not met
            match obj.getstring() {
                Some(token) => {
                    let support_companies = vec![
                        "TREASURY LIQUIDITY FUND".to_owned(),
                        "INTEL CORP".to_owned(),
                        "ADVANCED MICRO DEVICES".to_owned(),
                        "INTEREST ADJUSTMENT".to_owned(),
                    ];
                    if obj.is_pattern() == true {
                        if support_companies.contains(&token) == true {
                            processed_sequence.push(obj);
                        }
                    } else {
                        if token != "$" {
                            sequence.push_front(obj);
                        }
                    }
                }

                None => processed_sequence.push(obj),
            }

            // If sequence of expected entries is
            // empty then extract data from
            // processeed elements
            if sequence.is_empty() {
                state = ParserState::SearchingTransactionEntry;
                let mut transaction = processed_sequence.iter();
                match transaction_type {
                    TransactionType::Tax => {
                        let symbol = transaction
                            .next()
                            .unwrap()
                            .getstring()
                            .expect_and_log("Processing of Tax transaction went wrong");
                        // Ok we assume here that taxation of transaction appears later in document
                        // than actual transaction that is a subject to taxation
                        let tax_us = transaction
                            .next()
                            .unwrap()
                            .getf32()
                            .ok_or("Processing of Tax transaction went wrong")?;

                        // Here we just go through registered transactions and pick the one where
                        // income is higher than tax and apply tax value and where tax was not yet
                        // applied
                        let mut interests_as_div: Vec<(
                            &mut String,
                            &mut f32,
                            &mut f32,
                            Option<String>,
                        )> = interests_transactions
                            .iter_mut()
                            .map(|x| (&mut x.0, &mut x.1, &mut x.2, None))
                            .collect();
                        let mut div_as_ref: Vec<(&mut String, &mut f32, &mut f32, Option<String>)> =
                            div_transactions
                                .iter_mut()
                                .map(|x| (&mut x.0, &mut x.1, &mut x.2, x.3.clone()))
                                .collect();

                        let subject_to_tax = div_as_ref
                            .iter_mut()
                            .chain(interests_as_div.iter_mut())
                            .find(|x| *x.1 > tax_us && *x.2 == 0.0f32)
                            .ok_or("Error: Unable to find transaction that was taxed")?;
                        log::info!("Tax: {tax_us} was applied to {subject_to_tax:?}");
                        *subject_to_tax.2 = tax_us;
                        log::info!("Completed parsing Tax transaction");
                    }
                    TransactionType::Interests => {
                        let _symbol = transaction
                            .next()
                            .unwrap()
                            .getstring()
                            .expect_and_log("Processing of Interests transaction went wrong");
                        let gross_us = transaction
                            .next()
                            .unwrap()
                            .getf32()
                            .ok_or("Processing of Interests transaction went wrong")?;

                        interests_transactions.push((
                            transaction_dates
                                .pop()
                                .ok_or("Error: missing transaction dates when parsing")?,
                            gross_us,
                            0.0, // No tax info yet. It may be added later in Tax section
                        ));
                        log::info!("Completed parsing Interests transaction");
                    }
                    TransactionType::Dividends => {
                        let symbol = transaction
                            .next()
                            .unwrap()
                            .getstring()
                            .expect_and_log("Processing of Dividend transaction went wrong");
                        let gross_us = transaction
                            .next()
                            .unwrap()
                            .getf32()
                            .ok_or("Processing of Dividend transaction went wrong")?;

                        div_transactions.push((
                            transaction_dates
                                .pop()
                                .ok_or("Error: missing transaction dates when parsing")?,
                            gross_us,
                            0.0, // No tax info yet. It will be added later in Tax section
                            Some(symbol),
                        ));
                        log::info!("Completed parsing Dividend transaction");
                    }
                    TransactionType::Sold => {
                        if let Some(trans_details) =
                            yield_sold_transaction(&mut transaction, transaction_dates)
                        {
                            sold_transactions.push(trans_details);
                        }
                        log::info!("Completed parsing Sold transaction");
                    }
                    TransactionType::Trade => {
                        return Err("TransactionType::Trade should not appear during account statement processing!".to_string());
                    }
                }
                processed_sequence.clear();
            } else {
                state = ParserState::ProcessingTransaction(transaction_type);
            }
        }

        // In nothing more to be done then just extract
        // parsed data from paser objects
        None => {
            state = ParserState::ProcessingTransaction(transaction_type);
        }
    }
    Ok(state)
}

fn check_if_transaction(
    candidate_string: &str,
    dates: &mut Vec<String>,
    sequence: &mut std::collections::VecDeque<Box<dyn Entry>>,
    year: Option<String>,
) -> Result<ParserState, String> {
    let mut state = ParserState::SearchingTransactionEntry;

    log::info!("Searching for transaction through: \"{candidate_string}\"");

    let actual_year =
        year.ok_or("Missing year that should be parsed before transactions".to_owned())?;

    if candidate_string == "DIVIDEND" {
        create_interests_fund_parsing_sequence(sequence);
        state = ParserState::ProcessingTransaction(TransactionType::Interests);
        log::info!("Starting to parse Interests transaction");
    } else if candidate_string == "INTEREST INCOME-ADJ" {
        create_interest_adjustment_parsing_sequence(sequence);
        state = ParserState::ProcessingTransaction(TransactionType::Interests);
        log::info!("Starting to parse Interest adjustment transaction");
    } else if candidate_string == "QUALIFIED DIVIDEND" {
        create_qualified_dividend_parsing_sequence(sequence);
        state = ParserState::ProcessingTransaction(TransactionType::Dividends);
        log::info!("Starting to parse Qualified Dividend transaction");
    } else if candidate_string == "SOLD" {
        create_sold_2_parsing_sequence(sequence);
        state = ParserState::ProcessingTransaction(TransactionType::Sold);
        log::info!("Starting to parse Sold transaction");
    } else if candidate_string == "TAX WITHHOLDING" {
        create_tax_parsing_sequence(sequence);
        state = ParserState::ProcessingTransaction(TransactionType::Tax);
        log::info!("Starting to parse Tax transaction");
    } else if candidate_string == "TAX WITHHOLDING ADJ" {
        create_tax_withholding_adjusted_parsing_sequence(sequence);
        state = ParserState::ProcessingTransaction(TransactionType::Dividends);
        log::info!("Starting to parse Tax transaction");
    } else if candidate_string == "NET CREDITS/(DEBITS)" {
        // "NET CREDITS/(DEBITS)" is marking the end of CASH FLOW ACTIVITIES block
        state = ParserState::SearchingCashFlowBlock;
        log::info!("Finished parsing transactions");
    } else {
        let datemonth_pattern =
            regex::Regex::new(r"^(0?[1-9]|1[012])/(0?[1-9]|[12][0-9]|3[01])$").unwrap();
        if datemonth_pattern.is_match(candidate_string) {
            dates.push(candidate_string.to_owned() + "/" + actual_year.as_str());
        }
    }
    Ok(state)
}

/// Get last two digits of year from pattern like:  "31, 2023)"
fn yield_year(rust_string: &str) -> Option<String> {
    let re = regex::Regex::new(r"\b\d{4}\b")
        .expect("Unable to create regular expression to capture fiscal year");
    let maybe = re.find(rust_string);
    if let Some(year) = maybe {
        Some(year.as_str()[year.len() - 2..].to_string())
    } else {
        None
    }
}

/// Parse borkerage statement document type
fn parse_account_statement<'a, I>(
    pages_iter: I,
) -> Result<
    (
        Vec<(String, f32, f32)>,
        Vec<(String, f32, f32, Option<String>)>,
        Vec<(String, String, f32, f32, f32, Option<String>)>,
        Vec<(String, String, i32, f32, f32, f32, f32, f32)>,
    ),
    String,
>
where
    I: Iterator<Item = Result<PageRc, pdf::error::PdfError>>,
{
    let mut interests_transactions: Vec<(String, f32, f32)> = vec![];
    let mut div_transactions: Vec<(String, f32, f32, Option<String>)> = vec![];
    let mut sold_transactions: Vec<(String, String, f32, f32, f32, Option<String>)> = vec![];
    let trades: Vec<(String, String, i32, f32, f32, f32, f32, f32)> = vec![];
    let mut state = ParserState::SearchingYear;
    let mut sequence: std::collections::VecDeque<Box<dyn Entry>> =
        std::collections::VecDeque::new();
    let mut processed_sequence: Vec<Box<dyn Entry>> = vec![];
    // Queue for transaction dates. Pop last one or last two as trade and settlement dates
    let mut transaction_dates: Vec<String> = vec![];
    let mut year: Option<String> = None;

    for page in pages_iter {
        let page = page.unwrap();
        let contents = page.contents.as_ref().unwrap();
        for op in contents.operations.iter() {
            match op.operator.as_ref() {
                "Tj" => {
                    // Text show
                    if op.operands.len() > 0 {
                        //transaction_date = op.operands[0];
                        let a = &op.operands[0];
                        log::trace!("Parsing account statement: Detected PDF object: {a}");
                        match a {
                            Primitive::String(actual_string) => {
                                let raw_string = actual_string.clone().into_string();
                                let rust_string = if let Ok(r) = raw_string {
                                    r.trim().to_uppercase().replace("$", "")
                                } else {
                                    "".to_owned()
                                };
                                // Ignore empty tokens
                                if rust_string != "" {
                                    match state {
                                        ParserState::SearchingYear => {
                                            // Pattern to match "For the Period"
                                            let date_pattern = regex::Regex::new(r"(?i)For the Period").map_err(|_| "Unable to create regular expression to capture fiscal year")?;

                                            if date_pattern.find(rust_string.as_str()).is_some()
                                                && year.is_none()
                                            {
                                                log::info!("Found pattern: \"For the Period\". Starting to parsing year");
                                                state = ParserState::ProcessingYear;
                                            }
                                        }
                                        ParserState::ProcessingYear => {
                                            log::trace!("Parsing year. Token: {rust_string}");
                                            year = yield_year(&rust_string);
                                            if year.is_some() {
                                                log::info!("Parsed year: {year:?}");
                                                state = ParserState::SearchingCashFlowBlock;
                                            }
                                        }
                                        ParserState::SearchingCashFlowBlock => {
                                            // When we find "CASH FLOW ACTIVITY BY DATE" then
                                            // it is a starting point of transactions we are
                                            // interested in
                                            if rust_string == "CASH FLOW ACTIVITY BY DATE" {
                                                state = ParserState::SearchingTransactionEntry;
                                                log::info!("Parsing account statement: \"CASH FLOW ACTIVITY BY DATE\" detected. Start to parse transactions");
                                            }
                                        }
                                        ParserState::SearchingTransactionEntry => {
                                            state = check_if_transaction(
                                                &rust_string,
                                                &mut transaction_dates,
                                                &mut sequence,
                                                year.clone(),
                                            )?;
                                        }
                                        ParserState::ProcessingTransaction(transaction_type) => {
                                            state = process_transaction(
                                                &mut interests_transactions,
                                                &mut div_transactions,
                                                &mut sold_transactions,
                                                &actual_string,
                                                &mut transaction_dates,
                                                &mut processed_sequence,
                                                &mut sequence,
                                                transaction_type,
                                            )?
                                        }
                                    }
                                }
                            }
                            _ => (),
                        }
                    }
                }
                _ => {}
            }
        }
    }

    Ok((
        interests_transactions,
        div_transactions,
        sold_transactions,
        trades,
    ))
}
///  This function parses given PDF document
///  and returns result of parsing which is a tuple of
///  interest rate transactions
///  found Dividends paid transactions (div_transactions),
///  Sold stock transactions (sold_transactions)
///  information on transactions in case of parsing trade document (trades)
///  Dividends paid transaction is:
///        transaction date, gross_us, tax_us, company
///  Sold stock transaction is :
///     (trade_date, settlement_date, quantity, price, amount_sold, company)
pub fn parse_statement(
    pdftoparse: &str,
) -> Result<
    (
        Vec<(String, f32, f32)>,
        Vec<(String, f32, f32, Option<String>)>,
        Vec<(String, String, f32, f32, f32, Option<String>)>,
        Vec<(String, String, i32, f32, f32, f32, f32, f32)>,
    ),
    String,
> {
    //2. parsing each pdf
    let mypdffile = File::<Vec<u8>>::open(pdftoparse)
        .map_err(|_| format!("Error opening and parsing file: {}", pdftoparse))?;

    log::info!("Parsing: {} of {} pages", pdftoparse, mypdffile.num_pages());

    let mut pdffile_iter = mypdffile.pages();

    let first_page = pdffile_iter
        .next()
        .unwrap()
        .map_err(|_| "Unable to get first page of PDF file".to_string())?;

    let document_type = recognize_statement(first_page)?;

    let (interests_transactions, div_transactions, sold_transactions, trades) = match document_type
    {
        StatementType::UnknownDocument => {
            log::info!("Processing unknown document PDF");
            return Err(format!("Unsupported PDF document type: {pdftoparse}"));
        }
        StatementType::BrokerageStatement => {
            log::info!("Processing brokerage statement PDF");
            return Err(format!("Processing brokerage statement PDF is unsupported: document type: {pdftoparse}.To have it supported please use release 0.7.4 "));
        }
        StatementType::AccountStatement => {
            log::info!("Processing Account statement PDF");
            parse_account_statement(pdffile_iter)?
        }
    };

    Ok((
        interests_transactions,
        div_transactions,
        sold_transactions,
        trades,
    ))
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_parser() -> Result<(), String> {
        // quantity
        let data: Vec<u8> = vec!['1' as u8];
        let mut i = I32Entry { val: 0 };
        i.parse(&pdf::primitive::PdfString::new(data));
        assert_eq!(i.geti32(), Some(1));

        // price
        let data: Vec<u8> = vec![
            '2' as u8, '8' as u8, '.' as u8, '2' as u8, '0' as u8, '3' as u8, '5' as u8,
        ];
        let mut f = F32Entry { val: 0.0 };
        f.parse(&pdf::primitive::PdfString::new(data));
        assert_eq!(f.getf32(), Some(28.2035));

        // amount
        let data: Vec<u8> = vec![
            '4' as u8, ',' as u8, '8' as u8, '7' as u8, '7' as u8, '.' as u8, '3' as u8, '6' as u8,
        ];
        let mut f = F32Entry { val: 0.0 };
        f.parse(&pdf::primitive::PdfString::new(data));
        assert_eq!(f.getf32(), Some(4877.36));

        let data: Vec<u8> = vec![
            '(' as u8, '5' as u8, '7' as u8, '.' as u8, '9' as u8, '8' as u8, ')' as u8,
        ];
        let mut f = F32Entry { val: 0.0 };
        f.parse(&pdf::primitive::PdfString::new(data));
        assert_eq!(f.getf32(), Some(57.98));

        let data: Vec<u8> = vec!['$' as u8, '1' as u8, '.' as u8, '2' as u8, '2' as u8];
        let mut f = F32Entry { val: 0.0 };
        f.parse(&pdf::primitive::PdfString::new(data));
        assert_eq!(f.getf32(), Some(1.22));

        let data: Vec<u8> = vec![
            '8' as u8, '2' as u8, '.' as u8, '0' as u8, '0' as u8, '0' as u8,
        ];
        let mut f = F32Entry { val: 0.0 };
        f.parse(&pdf::primitive::PdfString::new(data));
        assert_eq!(f.getf32(), Some(82.00));

        // company code
        let data: Vec<u8> = vec!['D' as u8, 'L' as u8, 'B' as u8];
        let mut s = StringEntry {
            val: String::new(),
            patterns: vec!["INTC".to_owned(), "DLB".to_owned()],
        };
        s.parse(&pdf::primitive::PdfString::new(data));
        assert_eq!(s.is_pattern(), true);

        // unimportant string
        let data: Vec<u8> = vec!['K' as u8, 'L' as u8, 'M' as u8];
        let mut s = StringEntry {
            val: String::new(),
            patterns: vec![],
        };
        s.parse(&pdf::primitive::PdfString::new(data));
        assert_eq!(s.is_pattern(), true);
        Ok(())
    }

    #[test]
    fn test_transaction_validation() -> Result<(), String> {
        let mut transaction_dates: Vec<String> =
            vec!["11/29/22".to_string(), "12/01/22".to_string()];
        let mut processed_sequence: Vec<Box<dyn Entry>> = vec![];
        processed_sequence.push(Box::new(StringEntry {
            val: String::new(),
            patterns: vec!["INTC".to_owned(), "DLB".to_owned()],
        })); // INTC, DLB
        processed_sequence.push(Box::new(F32Entry { val: 42.0 })); //quantity
        processed_sequence.push(Box::new(F32Entry { val: 28.8400 })); // Price
        processed_sequence.push(Box::new(F32Entry { val: 1210.83 })); // Amount Sold

        yield_sold_transaction(&mut processed_sequence.iter(), &mut transaction_dates)
            .ok_or("Parsing error".to_string())?;
        Ok(())
    }

    #[test]
    fn test_transaction_validation_more_dates() -> Result<(), String> {
        let mut transaction_dates: Vec<String> = vec![
            "11/28/22".to_string(),
            "11/29/22".to_string(),
            "12/01/22".to_string(),
        ];
        let mut processed_sequence: Vec<Box<dyn Entry>> = vec![];
        processed_sequence.push(Box::new(StringEntry {
            val: String::new(),
            patterns: vec!["INTC".to_owned(), "DLB".to_owned()],
        })); // INTC, DLB
        processed_sequence.push(Box::new(F32Entry { val: 42.0 })); //quantity
        processed_sequence.push(Box::new(F32Entry { val: 28.8400 })); // Price
        processed_sequence.push(Box::new(F32Entry { val: 1210.83 })); // Amount Sold

        yield_sold_transaction(&mut processed_sequence.iter(), &mut transaction_dates)
            .ok_or("Parsing error".to_string())?;
        Ok(())
    }

    #[test]
    fn test_unsettled_transaction_validation() -> Result<(), String> {
        let mut transaction_dates: Vec<String> = vec!["11/29/22".to_string()];
        let mut processed_sequence: Vec<Box<dyn Entry>> = vec![];
        processed_sequence.push(Box::new(StringEntry {
            val: String::new(),
            patterns: vec!["INTC".to_owned(), "DLB".to_owned()],
        })); // INTC, DLB
        processed_sequence.push(Box::new(F32Entry { val: 42.0 })); //quantity
        processed_sequence.push(Box::new(F32Entry { val: 28.8400 })); // Price
        processed_sequence.push(Box::new(F32Entry { val: 1210.83 })); // Amount Sold

        assert_eq!(
            yield_sold_transaction(&mut processed_sequence.iter(), &mut transaction_dates),
            None
        );
        Ok(())
    }

    #[test]
    fn test_check_if_transaction() -> Result<(), String> {
        let rust_string = "DIVIDEND";
        let mut transaction_dates = vec![];
        let mut sequence = std::collections::VecDeque::new();

        assert_eq!(
            check_if_transaction(
                &rust_string,
                &mut transaction_dates,
                &mut sequence,
                Some("23".to_owned())
            ),
            Ok(ParserState::ProcessingTransaction(
                TransactionType::Interests
            ))
        );

        let rust_string = "QUALIFIED DIVIDEND";
        assert_eq!(
            check_if_transaction(
                &rust_string,
                &mut transaction_dates,
                &mut sequence,
                Some("23".to_owned())
            ),
            Ok(ParserState::ProcessingTransaction(
                TransactionType::Dividends
            ))
        );

        let rust_string = "QUALIFIED DIVIDEND";
        assert_eq!(
            check_if_transaction(&rust_string, &mut transaction_dates, &mut sequence, None),
            Err("Missing year that should be parsed before transactions".to_owned())
        );

        let rust_string = "CASH";
        assert_eq!(
            check_if_transaction(
                &rust_string,
                &mut transaction_dates,
                &mut sequence,
                Some("23".to_owned())
            ),
            Ok(ParserState::SearchingTransactionEntry)
        );

        Ok(())
    }

    #[test]
    fn test_yield_year() -> Result<(), String> {
        let rust_string = "31, 2023";
        assert_eq!(yield_year(&rust_string), Some("23".to_owned()));
        Ok(())
    }

    #[test]
    #[ignore]
    fn test_recognize_document_type_ms() -> Result<(), String> {
        let pdftoparse = "etrade_data_2023/MS_ClientStatements_6557_202309.pdf";

        //2. parsing each pdf
        let mypdffile = File::<Vec<u8>>::open(pdftoparse)
            .map_err(|_| format!("Error opening and parsing file: {}", pdftoparse))?;

        let mut pdffile_iter = mypdffile.pages();

        let first_page = pdffile_iter
            .next()
            .unwrap()
            .map_err(|_| "Unable to get first page of PDF file".to_string())?;

        let document_type = recognize_statement(first_page)?;

        assert_eq!(document_type, StatementType::AccountStatement);

        Ok(())
    }

    #[test]
    #[ignore]
    fn test_recognize_document_type_bs() -> Result<(), String> {
        let pdftoparse = "etrade_data_2023/Brokerage Statement - XXXXX6557 - 202302.pdf";

        //2. parsing each pdf
        let mypdffile = File::<Vec<u8>>::open(pdftoparse)
            .map_err(|_| format!("Error opening and parsing file: {}", pdftoparse))?;

        let mut pdffile_iter = mypdffile.pages();

        let first_page = pdffile_iter
            .next()
            .unwrap()
            .map_err(|_| "Unable to get first page of PDF file".to_string())?;

        let document_type = recognize_statement(first_page)?;

        assert_eq!(document_type, StatementType::BrokerageStatement);

        Ok(())
    }

    #[test]
    fn test_recognize_document_type_unk() -> Result<(), String> {
        let pdftoparse = "data/HowToReadETfromMSStatement.pdf";

        //2. parsing each pdf
        let mypdffile = File::<Vec<u8>>::open(pdftoparse)
            .map_err(|_| format!("Error opening and parsing file: {}", pdftoparse))?;

        let mut pdffile_iter = mypdffile.pages();

        let first_page = pdffile_iter
            .next()
            .unwrap()
            .map_err(|_| "Unable to get first page of PDF file".to_string())?;

        let document_type = recognize_statement(first_page)?;

        assert_eq!(document_type, StatementType::UnknownDocument);

        Ok(())
    }

    #[test]
    #[ignore]
    fn test_account_statement() -> Result<(), String> {
        assert_eq!(
            parse_statement("data/MS_ClientStatements_6557_202312.pdf"),
            (Ok((
                vec![("12/1/23".to_owned(), 1.22, 0.00)],
                vec![(
                    "12/1/23".to_owned(),
                    386.50,
                    57.98,
                    Some("INTEL CORP".to_string())
                ),],
                vec![(
                    "12/21/23".to_owned(),
                    "12/26/23".to_owned(),
                    82.0,
                    46.45,
                    3808.86,
                    Some("INTEL CORP".to_string())
                )],
                vec![]
            )))
        );
        Ok(())
    }

    #[test]
    #[ignore]
    fn test_account_statement_tax_on_interests() -> Result<(), String> {
        assert_eq!(
            parse_statement("data/example_interests_taxing.pdf"),
            (Ok((
                vec![("1/2/24".to_owned(), 0.92, 0.22)],
                vec![],
                vec![],
                vec![]
            )))
        );
        Ok(())
    }

    #[test]
    #[ignore]
    fn test_combined_account_statement() -> Result<(), String> {
        assert_eq!(
            parse_statement("etrade_data_2024/ClientStatements_010325.pdf"),
            (Ok((
                vec![
                    ("12/2/24".to_owned(), 4.88, 0.00),
                    ("10/1/24".to_owned(), 24.91, 0.00),
                    ("11/1/24".to_owned(), 25.09, 0.00),
                    ("9/3/24".to_owned(), 23.65, 0.00), // Interest rates
                    ("8/1/24".to_owned(), 4.34, 0.00),
                    ("7/1/24".to_owned(), 3.72, 0.00),
                    ("6/3/24".to_owned(), 13.31, 0.00),
                    ("5/1/24".to_owned(), 0.62, 0.00),
                    ("4/1/24".to_owned(), 1.16, 0.00),
                    ("1/2/24".to_owned(), 0.49, 0.00)
                ],
                vec![
                    (
                        "6/3/24".to_owned(),
                        57.25,
                        8.59,
                        Some("INTEL CORP".to_owned())
                    ), // Dividends date, gross, tax_us
                    (
                        "3/1/24".to_owned(),
                        380.25,
                        57.04,
                        Some("INTEL CORP".to_owned())
                    )
                ],
                vec![
                    (
                        "12/4/24".to_owned(),
                        "12/5/24".to_owned(),
                        30.0,
                        22.5,
                        674.98,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "12/5/24".to_owned(),
                        "12/6/24".to_owned(),
                        55.0,
                        21.96,
                        1207.76,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "11/1/24".to_owned(),
                        "11/4/24".to_owned(),
                        15.0,
                        23.32,
                        349.79,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "9/3/24".to_owned(),
                        "9/4/24".to_owned(),
                        17.0,
                        21.53,
                        365.99,
                        Some("INTEL CORP".to_string())
                    ), // Sold
                    (
                        "9/9/24".to_owned(),
                        "9/10/24".to_owned(),
                        14.0,
                        18.98,
                        265.71,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "8/5/24".to_owned(),
                        "8/6/24".to_owned(),
                        14.0,
                        20.21,
                        282.93,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "8/20/24".to_owned(),
                        "8/21/24".to_owned(),
                        328.0,
                        21.0247,
                        6895.89,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "7/31/24".to_owned(),
                        "8/1/24".to_owned(),
                        151.0,
                        30.44,
                        4596.31,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "6/3/24".to_owned(),
                        "6/4/24".to_owned(),
                        14.0,
                        31.04,
                        434.54,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "5/1/24".to_owned(),
                        "5/3/24".to_owned(),
                        126.0,
                        30.14,
                        3797.6,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "5/1/24".to_owned(),
                        "5/3/24".to_owned(),
                        124.0,
                        30.14,
                        3737.33,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "5/1/24".to_owned(),
                        "5/3/24".to_owned(),
                        89.0,
                        30.6116,
                        2724.4,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "5/2/24".to_owned(),
                        "5/6/24".to_owned(),
                        182.0,
                        30.56,
                        5561.87,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "5/3/24".to_owned(),
                        "5/7/24".to_owned(),
                        440.0,
                        30.835,
                        13567.29,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "5/3/24".to_owned(),
                        "5/7/24".to_owned(),
                        198.0,
                        30.835,
                        6105.28,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "5/3/24".to_owned(),
                        "5/7/24".to_owned(),
                        146.0,
                        30.8603,
                        4505.56,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "5/3/24".to_owned(),
                        "5/7/24".to_owned(),
                        145.0,
                        30.8626,
                        4475.04,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "5/3/24".to_owned(),
                        "5/7/24".to_owned(),
                        75.0,
                        30.815,
                        2311.11,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "5/6/24".to_owned(),
                        "5/8/24".to_owned(),
                        458.0,
                        31.11,
                        14248.26,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "5/31/24".to_owned(),
                        "6/3/24".to_owned(),
                        18.0,
                        30.22,
                        543.94,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "4/3/24".to_owned(),
                        "4/5/24".to_owned(),
                        31.0,
                        40.625,
                        1259.36,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "4/11/24".to_owned(),
                        "4/15/24".to_owned(),
                        209.0,
                        37.44,
                        7824.89,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "4/11/24".to_owned(),
                        "4/15/24".to_owned(),
                        190.0,
                        37.44,
                        7113.54,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "4/16/24".to_owned(),
                        "4/18/24".to_owned(),
                        310.0,
                        36.27,
                        11243.61,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "4/29/24".to_owned(),
                        "5/1/24".to_owned(),
                        153.0,
                        31.87,
                        4876.07,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "4/29/24".to_owned(),
                        "5/1/24".to_owned(),
                        131.0,
                        31.87,
                        4174.93,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "4/29/24".to_owned(),
                        "5/1/24".to_owned(),
                        87.0,
                        31.87,
                        2772.66,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "3/11/24".to_owned(),
                        "3/13/24".to_owned(),
                        38.0,
                        43.85,
                        1666.28,
                        Some("INTEL CORP".to_string())
                    ),
                    (
                        "2/20/24".to_owned(),
                        "2/22/24".to_owned(),
                        150.0,
                        43.9822,
                        6597.27,
                        Some("INTEL CORP".to_string())
                    )
                ],
                vec![]
            )))
        );
        Ok(())
    }

    #[test]
    #[ignore]
    fn test_parse_amd_statement() -> Result<(), String> {
        assert_eq!(
            parse_statement("data/example-sold-amd.pdf"),
            Ok((
                vec![],
                vec![],
                vec![
                    (
                        "11/10/23".to_owned(),
                        "11/14/23".to_owned(),
                        72.0,
                        118.13,
                        8505.29,
                        Some("ADVANCED MICRO DEVICES".to_string())
                    ),
                    (
                        "11/22/23".to_owned(),
                        "11/27/23".to_owned(),
                        162.0,
                        122.4511,
                        19836.92,
                        Some("ADVANCED MICRO DEVICES".to_string())
                    ),
                ],
                vec![]
            ))
        );

        //TODO(jczaja): Renable reinvest dividends case as soon as you get some PDFs
        //assert_eq!(
        //    parse_statement("data/example3.pdf"),
        //    (
        //        vec![
        //            ("06/01/21".to_owned(), 0.17, 0.03),
        //            ("06/01/21".to_owned(), 45.87, 6.88)
        //        ],
        //        vec![],
        //        vec![]
        //    )
        //);

        //assert_eq!(
        //    parse_statement("data/example5.pdf"),
        //    (
        //        vec![],
        //        vec![],
        //        vec![(
        //            "04/11/22".to_owned(),
        //            "04/13/22".to_owned(),
        //            1,
        //            46.92,
        //            46.92,
        //            0.01,
        //           0.01,
        //            46.9
        //        )]
        //    )
        //);
        Ok(())
    }
}