-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaxas_v5_method.go
370 lines (307 loc) · 13.2 KB
/
taxas_v5_method.go
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
/*
***************************************************************
"TAXAS" is an application to help with the Annual
Income Tax Return (Declaração Anual de Imposto sobre Renda)
and also for tracking investments.
Calculation of fees and taxes on brokerage note
with multiple purchases and sales items.
(Multiple buying and sailling assets).
In this case, a proportional division (weighted) of the total
rate of the note must be made by each transacted asset.
The individual fees are printed and then incorporated into
the ".pdf" of the corresponding Brokerage Note
(document which the Federal Revenue can request).
In the accounting view of the algorithm:
Purchase of assets represents debit ("-" sign).
Fees and taxes represent debits ("-" sign)
Sale of assets represents credit ("+" sign).
Although they do not appear here, remember:
dividends and earnings represent credits ("+" sign).
*/
package main
import (
"fmt"
"math"
"strconv" // telainput uses it
"strings"
)
/* pretencioso histórico de improvements (melhorias)
// var sversion = "v0.04" // 03-03-2023 - v0.03 include column qt. X unitary in final result
// var sversion = "v0.05" // 29-05-2023 - v0.05 data entry of the brokerage note
*/
var sversion = "v0.06" // 04-06-2023 - v0.06 data entry - method for data entry cabec
type LinhaNota struct { // linha de uma nota de corretagem
cvlnota string // "C" ou "V" compra ou venda na linha - compra (débito) sera negativo venda (crédito) sera positivo
pplnota string // ativo ("PaPel") transacionado ns linha
qtlnota int // quantidade do ativo na linha - herda o sinal de C/V "-" na compra e "+" na venda
unlnota float64 // preço medio da aquisição (unitario da linha)- sempre positivo
epcnota float64 // coRRetagem específica deste papel na linha - SEMPRE NEGATIVA conhece o valor - fora do calculo ponderado
txlnota float64 // taxa desta transac. deste ativo - SEMPRE NEGATIVA a PRÓPRIA INCOGNITA a obter através de ponderação
ttlnota float64 // custo deste ativo na linha - positivo (credito) na venda negativo (débito) na compra
}
var nota []LinhaNota
type cabecType struct {
corretora string
numNotaCorr string
dataPregao string
totalDaNotaCSinal float64
quantosItens int
}
func (cabec *cabecType) tela_mtd_inputcabec(){
var err error
totalDaNotaCSinal := "0.00" // type convert issue
quantosItens := "0" // how much itens to be entered // type convert issue
fmt.Printf("corretora notaCorretagem dataPregao +/-valTotal itens \n")
n, err := fmt.Scanf("%s %s %s %s %s\n", &cabec.corretora,
&cabec.numNotaCorr,
&cabec.dataPregao,
&totalDaNotaCSinal,
&quantosItens)
cabec.totalDaNotaCSinal , _ = strconv.ParseFloat(totalDaNotaCSinal, 64)
cabec.quantosItens , _ = strconv.Atoi(quantosItens)
// remenber syntax cabec.quantosItens , _ = strconv.ParseInt(quantosItens, 10, 64)
// remenber syntax vquantosItens, _ := strconv.Atoi(quantosItens)
if err != nil {
panic(err)
}
if n != 5 {
panic("must read 5 variables: 1 corretora 2 nota 3 data 4 +/-val.tot. 5 ITENS")
}
// debug // fmt.Println("recebido", cabec.corretora, cabec.numNotaCorr, cabec.dataPregao, cabec.totalDaNotaCSinal, cabec.quantosItens) // util para debug //
}
// func telainputcabec(cabec *cabecType){
// var err error
// totalDaNotaCSinal := "0.00" // type convert issue
// quantosItens := "0" // how much itens to be entered // type convert issue
// fmt.Printf("corretora notaCorretagem dataPregao +/-valTotal itens \n")
// n, err := fmt.Scanf("%s %s %s %s %s\n", &cabec.corretora, &cabec.numNotaCorr,
// &cabec.dataPregao, &totalDaNotaCSinal, &quantosItens)
// cabec.totalDaNotaCSinal , _ = strconv.ParseFloat(totalDaNotaCSinal, 64)
// cabec.quantosItens , _ = strconv.Atoi(quantosItens)
// // remenber syntax cabec.quantosItens , _ = strconv.ParseInt(quantosItens, 10, 64)
// // remenber syntax vquantosItens, _ := strconv.Atoi(quantosItens)
// if err != nil {
// panic(err)
// }
// if n != 5 {
// panic("must read 5 variables")
// }
// // util para debug // fmt.Println("recebido", cabec.corretora, cabec.numNotaCorr, cabec.dataPregao, cabec.totalDaNotaCSinal, cabec.quantosItens)
// }
// func Scanf(format string, a ...any) (n int, err error)
// n ==> It returns the number of items successfully scanned
// n ==> If that is less than the number of arguments, err will report why.
func telainput(cabec cabecType, nota *[]LinhaNota) {
var linha LinhaNota
var n int
var err error
// debug // fmt.Println("total de itens = ", cabec.quantosItens ," valor total c/ sinal= ", cabec.totalDaNotaCSinal)
fmt.Printf("prompt to enter, use space as delimiter\n")
// taking each item:
cv1 := "V"
pp2 := "KNIP11"
qt3 := "10"
un4 := "100.00"
epc5 := "4.50"
for i := 1; i <= cabec.quantosItens; i++ {
fmt.Println(" Item - ", i, " em ", cabec.quantosItens, " siga o modelo; <enter> finaliza")
cv1 = "'C'ou'V'"
pp2 = "EXPL"+strconv.Itoa(i)
qt3 = "999"
un4 = "999.99"
epc5 = "4.50"
fmt.Printf("%s %s %s %s %s\n", cv1, pp2, qt3, un4, epc5)
n, err = fmt.Scanf("%s %s %s %s %s", &cv1, &pp2, &qt3, &un4, &epc5) // by reference!
if err != nil {
panic(err)
}
if n != 5 {
panic("must read 5 variables")
}
cv1 = strings.ToUpper(cv1)
if cv1 != "V" && cv1 != "C" {
panic("Compra ou Venda deve ser 'C' ou 'V'")
}
linha.cvlnota = cv1
linha.pplnota = pp2
linha.qtlnota, err = strconv.Atoi(qt3)
if err != nil {
panic(err)
}
linha.unlnota, err = strconv.ParseFloat(un4, 64)
if err != nil {
panic(err)
}
linha.epcnota, err = strconv.ParseFloat(epc5, 64)
if err != nil {
panic(err)
}
linha.txlnota = 0.
linha.ttlnota = 0.
*nota = append(*nota, linha)
// util para debug // fmt.Println(" linha = ",linha)
}
fmt.Printf("nota dentro de telainput: %v#\n", nota)
fmt.Println("fim de telainput")
}
func main() {
var ttCompras, // soma modular de todas as compras
ttVendas, // soma modular de todas as vendas
tttaxas,
vlLiqFinalNota, // valor final da Nota de Corretagem com sinal (Crédito "+" e Débito "-") !
fatorTx, // (difAPond / vlBruto) - a multiplicar por cada "qtd. X unit." resulta a taxa ponderada da linha
vlttepc, // sum of the asset-specific brokerage fees (out of the total to be weighted)
sumAlgCV, // algebraic sum of purchases and sales ("profit or loss")
sumModCV float64 // modular sum of purchases and sales ("traded amount")
/************************************************************************************************************
* total de nota só de compras é negativo
* A T E N Ç Ã O === A T E N Ç Ã O === A T E N Ç Ã O === A T E N Ç Ã O ===
* liquido para daqui a dois dias úteis COM SINAL ! ! ! ! ! ! ! ! !
*
* CREDITO(+venda) ou DEBITO(-compra) líquido a ser lançado na conta de investimento -
*
* vlLiqFinalNota é o ultimo valor da nota canto inferior direito - é o que entra ou sai da conta.
* trecho para carga do slice nota
*
*************************************************************************************************************/
vlLiqFinalNota = -888.88 // colocar sinal + para credito(venda) e - para debito(compra)- decimal point is a "."
cabec := cabecType{}
cabec.tela_mtd_inputcabec()
// debug // fmt.Println(cabec)
telainput( cabec , ¬a )
// trecho para debug
// fmt.Println("-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-")
// fmt.Println("cabec from telainput ", cabec)
// fmt.Println("nota from telainput ", nota)
// fmt.Println("-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-")
vlLiqFinalNota = cabec.totalDaNotaCSinal
/************************************************************************************************************
// algoritmo:
// soma algebrica de compras e vendas [qtd X vl.unit] = sumAlgCV
// modulo de sumAlgCV menos modulo de vlLiqFinalNota (desconsidera clearing especifico de cada ativo)
// é o valor das taxas a serem divididos proporcionalmente
// fim do trecho para carga do slice nota ==================================================================
***********************************************************************************************************/
sumModCV = 0 // sum modulos compra e venda = "valor da operação"
sumAlgCV = 0 // sum algebrica compra e venda = "liquido da operação sem corretagem e taxas"
ttCompras = 0
ttVendas = 0
vlttepc = 0
for i := range nota { // modo "simplificado" de for i , _ := range ...
// normalizando os parametros:
// .... nomes de papel em maiúsculo e também "C ou V" maiúsculo
nota[i].pplnota = strings.ToUpper(nota[i].pplnota)
nota[i].cvlnota = strings.ToUpper(nota[i].cvlnota)
// .... corretagem específica é negativa sempre
if nota[i].epcnota > 0 {
nota[i].epcnota = -1 * nota[i].epcnota // corretagem específica é negativa se existir
}
// .... valor unitário sempre positivo
if nota[i].unlnota < 0 {
nota[i].unlnota = -1 * nota[i].unlnota // valor unitario é maior que zero
}
// .... quantidade leva o sinal algébrico de "C" "-" ou "V" "+"
if nota[i].cvlnota == "V" {
if nota[i].qtlnota < 0 {
nota[i].qtlnota = -1 * nota[i].qtlnota // se venda a quantidade é maior que zero
}
} else if nota[i].cvlnota == "C" {
if nota[i].qtlnota > 0 {
nota[i].qtlnota = -1 * nota[i].qtlnota // se compra a quantidade é menor que zero
}
} else {
panic("*** ERRO ! Tem que ser 'c' ou 'v' - encontrou: " + nota[i].pplnota )
}
// fim da normalização de parametros
// acumulação em ttCompras e ttVendas
if nota[i].cvlnota == "C" {
ttCompras += float64(nota[i].qtlnota) * nota[i].unlnota
} else if nota[i].cvlnota == "V" {
ttVendas += float64(nota[i].qtlnota) * nota[i].unlnota
} else {
panic("*** ERRO: valor não esperado para o\n campo C/V: " + nota[i].cvlnota + " em " + nota[i].pplnota + " - Adeus! ***")
} // 12345678901234
// acumula a corretagem específica a substrair do total a ser ponderado para taxas normais
vlttepc += nota[i].epcnota
// util para debug // fmt.Println("nota após d.entry ",i ,nota[i], vlttepc)
}
fmt.Printf("\n")
sumModCV = math.Abs(ttCompras) + math.Abs(ttVendas) // soma do módulo compra e venda = "total de operações" da N.C.
sumAlgCV = ttCompras + ttVendas // sum algebrica compra e venda
if sumAlgCV <= 0 {
tttaxas = math.Abs(vlLiqFinalNota) - math.Abs(sumAlgCV) - math.Abs(vlttepc)
} else { // sumAlgCV > 0
tttaxas = math.Abs(vlLiqFinalNota) - math.Abs(sumAlgCV) + math.Abs(vlttepc)
}
fatorTx = math.Abs(tttaxas) / sumModCV
fmt.Printf(" Compras: %9.2f Vendas: %9.2f \nsum alg cv: %9.2f sum mod cv: %9.2f \n vlLiqFinalNota: %9.2f tttaxas: %9.2f \nfatorTx: %9.6f vlttepc: %9.2f \n",
ttCompras, ttVendas, sumAlgCV, sumModCV, vlLiqFinalNota, tttaxas, fatorTx, vlttepc)
fmt.Println("========================= taxa de cada papel: ==============" + sversion + "=======") // a versão
cabecStr := cabec.corretora + " - Nota de Corretagem: "+cabec.numNotaCorr+" - Pregão: "+cabec.dataPregao+" Tot.: "
fmt.Printf("%s %1.2f \n", cabecStr, cabec.totalDaNotaCSinal) // vlLiqFinalNota)
fmt.Printf("\n%s", "lin ativo C/V qtd unitario qtd X unt especifica taxa preço")
for i := range nota {
nota[i].txlnota = -1 * fatorTx * math.Abs(float64(nota[i].qtlnota)) * nota[i].unlnota
nota[i].ttlnota = fttlinnota((¬a[i]))
fmt.Printf("\n%2d %7s %4s %5d %9.2f %9.2f %9.2f %9.2f %10.2f",
(i + 1),
nota[i].pplnota,
nota[i].cvlnota,
nota[i].qtlnota,
nota[i].unlnota,
float64(nota[i].qtlnota)*nota[i].unlnota,
nota[i].epcnota,
nota[i].txlnota,
nota[i].ttlnota,
)
}
fmt.Printf("\n")
somataxas := 0.0
sumttlnota := 0.0
for _, umaLinha := range nota {
somataxas += umaLinha.txlnota
sumttlnota += umaLinha.ttlnota
}
fmt.Printf(" tot.taxas: %5.2f sumtx: %5.2f vl.liq.operac.: %9.2f\n", tttaxas, somataxas, sumttlnota)
if math.Abs(sumttlnota-vlLiqFinalNota) > 0.005 {
fmt.Println("* * * * * algo errado", vlLiqFinalNota, sumttlnota, " * * * * * ")
}
}
func fttlinnota(aa *LinhaNota) float64 {
resu := float64(aa.qtlnota)*(aa.unlnota) + aa.txlnota + aa.epcnota
return (resu)
}
// NOTE: this isn't multi-Unicode-codepoint aware, like specifying skintone or
// gender of an emoji: https://unicode.org/emoji/charts/full-emoji-modifiers.html
func substr(input string, start int, length int) string {
asRunes := []rune(input)
if start >= len(asRunes) {
return ""
}
if start+length > len(asRunes) {
length = len(asRunes) - start
}
return string(asRunes[start : start+length])
}
/******************************************************************************
package main
import "fmt"
type MyObject struct {
data int
name string
valor float64
}
func (obj *MyObject) abc() {
obj.valor = 99.99
obj.name = `some name`
obj.data = 10
}
func main() {
// calling abc function
object := &MyObject{}
object.abc()
fmt.Printf("object = %+v", *object)
}
// object = {data:10 name:some name valor:99.99}
// Program exited.
*/