Spaces:
Runtime error
Runtime error
Everton Aleixo
commited on
Commit
•
876c387
1
Parent(s):
17d28c0
Change text.
Browse files
app.py
CHANGED
@@ -75,9 +75,9 @@ def simulate():
|
|
75 |
wallet_variavel['money'] += div
|
76 |
|
77 |
patrimonio_variavel_val = format_currency(ticker.iloc[-1].Close * wallet_variavel["stocks"], 'BRL', locale='pt_BR')
|
78 |
-
patrimonio_variavel = f'Você teria acumulado um total de {patrimonio_variavel_val}'
|
79 |
patrimonio_renda_fixa_val = format_currency(wallet_fixo["money"], 'BRL', locale='pt_BR')
|
80 |
-
patrimonio_renda_fixa = f'Você teria acumulado um total de {patrimonio_renda_fixa_val}'
|
81 |
invested_val = format_currency(wallet_fixo['invested'], 'BRL', locale='pt_BR')
|
82 |
invested = invested_val
|
83 |
chart_data = ticker[['Open']]
|
|
|
75 |
wallet_variavel['money'] += div
|
76 |
|
77 |
patrimonio_variavel_val = format_currency(ticker.iloc[-1].Close * wallet_variavel["stocks"], 'BRL', locale='pt_BR')
|
78 |
+
patrimonio_variavel = f'Você teria acumulado um total de {patrimonio_variavel_val}. Tendo acumulado {wallet_variavel["stocks"]} ações de {option}.'
|
79 |
patrimonio_renda_fixa_val = format_currency(wallet_fixo["money"], 'BRL', locale='pt_BR')
|
80 |
+
patrimonio_renda_fixa = f'Você teria acumulado um total de {patrimonio_renda_fixa_val} investindo em renda fixa com uma taxa de {taxa_renda_fixa} ao mês.'
|
81 |
invested_val = format_currency(wallet_fixo['invested'], 'BRL', locale='pt_BR')
|
82 |
invested = invested_val
|
83 |
chart_data = ticker[['Open']]
|