-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
214 lines (173 loc) · 8.49 KB
/
Program.cs
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
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.IO.Compression;
using System.Linq;
using System.Net.Http;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using CsvHelper;
using CsvHelper.Configuration;
using OfficeOpenXml;
public class FundoInvestimento
{
public string CNPJ_FUNDO { get; set; }
public DateTime DT_COMPTC { get; set; }
public string TP_FUNDO { get; set; }
public int NR_COTST { get; set; }
public float VL_QUOTA { get; set; }
public decimal VL_PATRIM_LIQ { get; set; }
public decimal CAPTC_DIA { get; set; }
public decimal RESG_DIA { get; set; }
public override string ToString()
{
return $"CNPJ: {CNPJ_FUNDO}, Data: {DT_COMPTC}, Tipo: {TP_FUNDO}, Valor da Cota: {VL_QUOTA}, Patrimonio Liquido: {VL_PATRIM_LIQ}, Captação: {CAPTC_DIA}, Resgates: {RESG_DIA}, Número de Cotistas: {NR_COTST}";
}
}
public class Program
{
private static readonly HttpClient client = new HttpClient();
public static async Task Main(string[] args)
{
System.Text.Encoding.RegisterProvider(System.Text.CodePagesEncodingProvider.Instance);
do
{
string cnpj;
do
{
Console.Write("Digite o CNPJ do fundo (ex: 00.017.024/0001-53): ");
cnpj = Console.ReadLine();
if (!CnpjValido(cnpj))
{
Console.WriteLine("CNPJ inválido, verifique o formato e insira novamente.");
}
} while (!CnpjValido(cnpj));
DateTime dataInicial;
do
{
Console.Write("Digite a data inicial (ex: 01072023): ");
if (!DateTime.TryParseExact(Console.ReadLine(), "ddMMyyyy", CultureInfo.InvariantCulture, DateTimeStyles.None, out dataInicial))
{
Console.WriteLine("Data inválida, verifique o formato e insira novamente.");
}
} while (dataInicial == default);
DateTime dataFinal;
do
{
Console.Write("Digite a data final (ex: 31072023): ");
if (!DateTime.TryParseExact(Console.ReadLine(), "ddMMyyyy", CultureInfo.InvariantCulture, DateTimeStyles.None, out dataFinal))
{
Console.WriteLine("Data inválida, verifique o formato e insira novamente.");
}
} while (dataFinal == default);
var fundos = new List<FundoInvestimento>();
for (int ano = dataInicial.Year; ano <= dataFinal.Year; ano++)
{
for (int mes = dataInicial.Month; mes <= dataFinal.Month; mes++)
{
var fundosDoMes = await BaixarDadosFundos(ano.ToString(), mes.ToString("D2"));
fundos.AddRange(fundosDoMes);
}
}
// Filtrar fundos com cotistas, com o CNPJ especificado e entre as datas especificadas
var fundosFiltrados = fundos.Where(f => f.NR_COTST >= 1 && f.CNPJ_FUNDO == cnpj && f.DT_COMPTC >= dataInicial && f.DT_COMPTC <= dataFinal).ToList();
// Calcular a rentabilidade
var valorInicial = fundosFiltrados.First().VL_QUOTA;
var valorFinal = fundosFiltrados.Last().VL_QUOTA;
var rentabilidade = ((valorFinal / valorInicial) - 1) * 100;
// Calcular Captação no periodo
var captacaoTotal = fundosFiltrados.Sum(f => f.CAPTC_DIA);
// Calcular Resgates no periodo
var resgatesTotal = fundosFiltrados.Sum(f => f.RESG_DIA);
// Calcular Resultado Captação Líquida Aplicações - Resgates
var captacaoLiquida = captacaoTotal - resgatesTotal;
// Gerar nome de arquivo com data e hora atual
string nomeArquivo = $"C:\\Users\\ojeff\\Downloads\\FundosFiltrados_{DateTime.Now:yyyyMMddHHmmss}.xlsx";
// Escrever os dados filtrados em um arquivo Excel
using (var package = new ExcelPackage(new FileInfo(nomeArquivo)))
{
var worksheet = package.Workbook.Worksheets.Add("Fundos");
worksheet.Cells["A1"].LoadFromCollection(fundosFiltrados, PrintHeaders: true);
worksheet.Cells["B:B"].Style.Numberformat.Format = "dd-mm-yyyy"; // Formato de data para coluna DT_COMPTC
worksheet.Cells["E:E"].Style.Numberformat.Format = "#,##0.00"; // Formato de moeda para coluna VL_PATRIM_LIQ
worksheet.Cells["G:G"].Style.Numberformat.Format = "#,##0.00"; // Formato de moeda para coluna CAPTC_DIA
worksheet.Cells["H:H"].Style.Numberformat.Format = "#,##0.00"; // Formato de moeda para coluna RESG_DIA
// Escrever Rentabilidade no Período
worksheet.Cells["I1"].Value = "Rentabilidade no Período:";
worksheet.Cells["I2"].Value = Math.Round(rentabilidade, 2); // Arredondar a rentabilidade para 2 casas decimais
// Escrever Captação no Período
worksheet.Cells["J1"].Value = "Captação no Período:";
worksheet.Cells["J2"].Value = captacaoTotal;
// Escrever Resgates no Período
worksheet.Cells["K1"].Value = "Resgates no Período:";
worksheet.Cells["K2"].Value = resgatesTotal;
// Escrever Captação Líquida
worksheet.Cells["L1"].Value = "Captação Líquida:";
worksheet.Cells["L2"].Value = captacaoLiquida;
package.Save();
}
Console.WriteLine($"Arquivo gerado com sucesso: {nomeArquivo}");
// Perguntar ao usuário se deseja gerar uma nova solicitação ou encerrar o aplicativo
Console.Write("Deseja gerar nova solicitação? (S/N): ");
} while (Console.ReadLine().ToUpper() == "S");
}
public static async Task<List<FundoInvestimento>> BaixarDadosFundos(string ano, string mes)
{
var url = $"https://dados.cvm.gov.br/dados/FI/DOC/INF_DIARIO/DADOS/inf_diario_fi_{ano}{mes}.zip";
var response = await client.GetAsync(url);
if (!response.IsSuccessStatusCode)
{
// Se a resposta não for bem-sucedida (por exemplo, se o arquivo para o mês especificado não existir), retorne uma lista vazia
return new List<FundoInvestimento>();
}
var zipPath = $"inf_diario_fi_{ano}{mes}.zip";
await using (var stream = await response.Content.ReadAsStreamAsync())
using (var fileStream = File.Create(zipPath))
{
await stream.CopyToAsync(fileStream);
}
using (var archive = ZipFile.OpenRead(zipPath))
{
var entry = archive.Entries[0];
using (var reader = new StreamReader(entry.Open()))
using (var csv = new CsvReader(reader, new CsvConfiguration(CultureInfo.InvariantCulture) { Delimiter = ";" }))
{
var fundos = csv.GetRecords<FundoInvestimento>().ToList();
return fundos;
}
}
}
public static bool CnpjValido(string cnpj)
{
// Remover caracteres não numéricos
cnpj = Regex.Replace(cnpj, "[^0-9]", "");
// CNPJ deve ter 14 caracteres numéricos
if (cnpj.Length != 14)
return false;
// Calcular os dois dígitos verificadores
int[] multiplier1 = { 5, 4, 3, 2, 9, 8, 7, 6, 5, 4, 3, 2 };
int[] multiplier2 = { 6, 5, 4, 3, 2, 9, 8, 7, 6, 5, 4, 3, 2 };
string tempCnpj = cnpj.Substring(0, 12);
int sum = 0;
for (int i = 0; i < 12; i++)
{
sum += int.Parse(tempCnpj[i].ToString()) * multiplier1[i];
}
int remainder = sum % 11;
remainder = remainder < 2 ? 0 : 11 - remainder;
string digit1 = remainder.ToString();
tempCnpj += digit1;
sum = 0;
for (int i = 0; i < 13; i++)
{
sum += int.Parse(tempCnpj[i].ToString()) * multiplier2[i];
}
remainder = sum % 11;
remainder = remainder < 2 ? 0 : 11 - remainder;
string digit2 = remainder.ToString();
tempCnpj += digit2;
// Verificar se o CNPJ original é igual ao CNPJ com os dígitos verificadores calculados
return cnpj == tempCnpj;
}
}