read_13f
read_13f copied to clipboard
2 problems to address
https://www.sec.gov/Archives/edgar/data/0001106500/000117266113000732/0001172661-13-000732.txt
This should be addressable with this in the read_old_1 method in file processor old Although we could use this as an opportunity to make another read old type method
for(int i = 0; i < text_lines.size(); i++) {
if(text_lines.get(i).startsWith("<S>")
|| text_lines.get(i).startsWith("-----------")) {
for(int j = i + 1; j < text_lines.size(); j++) {
if(text_lines.get(j).startsWith("Report Summary")
|| text_lines.get(j).startsWith("</TABLE>")) {
break;
}
lines_we_care_about.add(text_lines.get(j));
}
break;
}
}
push this next update
https://www.sec.gov/Archives/edgar/data/1343781/000134378117000006/0001343781-17-000006.txt
This one I will need to see how to address