-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstreamlit_app.py
516 lines (412 loc) · 14.8 KB
/
streamlit_app.py
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
import streamlit as st
import pandas as pd
import yfinance as yf
from datetime import datetime
import plotly.graph_objs as go
from plotly.subplots import make_subplots
from itertools import islice
st.set_page_config(page_title="Ações Dashboard", page_icon=":money_with_wings:", layout="wide")
st.html('styles.html')
def batched(iterable, n_cols):
"""
Gera lotes de um iterável, cada lote contendo até n_cols elementos.
Parâmetros:
iterable (iterable): A sequência de entrada que será dividida em lotes.
n_cols (int): O número máximo de elementos em cada lote.
Retorno:
generator: Um gerador que produz tuplas de elementos do iterável, cada uma contendo até n_cols elementos.
Exemplo:
>>> list(batched('ABCDEFG', 3))
[('A', 'B', 'C'), ('D', 'E', 'F'), ('G',)]
"""
if n_cols < 1:
raise ValueError("n must be at least one")
it = iter(iterable)
while batch := tuple(islice(it, n_cols)):
yield batch
def plot_sparkline(data):
"""
Cria um gráfico de linha (sparkline) para os dados fornecidos.
Parâmetros:
data (list ou pd.Series): Sequência de dados numéricos a serem plotados.
Retorno:
plotly.graph_objects.Figure: Figura Plotly contendo o sparkline.
"""
fig_spark = go.Figure(
data=go.Scatter(
y=data,
mode='lines',
fill='tozeroy',
line=dict(color='red'),
fillcolor='pink'
)
)
fig_spark.update_traces(hovertemplate="Preço: R$ %{y:.2f}")
fig_spark.update_xaxes(visible=False, fixedrange=True)
fig_spark.update_yaxes(visible=False, fixedrange=True)
fig_spark.update_layout(
showlegend=False,
plot_bgcolor="white",
height=50,
margin=dict(t=10, l=0, b=0, r=0, pad=0),
)
return fig_spark
def display_watchlist_card(ticker, symbol_name, last_price, change_pct, open):
"""
Exibe um cartão de observação com informações sobre um ativo.
Parâmetros:
ticker (str): O símbolo do ticker do ativo.
symbol_name (str): O nome do símbolo do ativo.
last_price (float): O preço atual do ativo.
change_pct (float): A variação percentual do preço do ativo.
open (list ou pd.Series): Os preços de abertura do ativo.
Retorno:
None
"""
with st.container(border=True):
st.html('<span class="watchlist_card"></span>')
top_left, top_right = st.columns([2, 1])
bottom_left, bottom_right = st.columns([1, 1])
with top_left:
st.html('<span class="watchlist_symbol_name"></span>')
st.markdown(f"{symbol_name}")
with top_right:
st.html('<span class="watchlist_ticker"></span>')
st.markdown(f"{ticker}")
negative_gradient = float(change_pct) < 0
st.markdown(
f""":{'red'
if negative_gradient
else 'green'
}[{'▼' if negative_gradient else '▲'}
{round(change_pct, 2)} %]"""
)
with bottom_left:
with st.container():
st.html('<span class="watchlist_price_label"></span>')
st.markdown("Valor Atual")
with st.container():
st.html('<span class="watchlist_price_value"></span>')
st.markdown(f"R$ {last_price:.2f}")
with bottom_right:
st.html('<span class="watchlist_bottom_right"></span>')
fig_spark = plot_sparkline(open)
st.plotly_chart(
fig_spark,
config=dict(displayModeBar=False),
use_container_width=True
)
def display_watchlist(ticker_df):
"""
Exibe uma lista de observação (watchlist) de ativos em um layout de grade.
Parâmetros:
ticker_df (pd.DataFrame): DataFrame contendo informações dos ativos.
Espera-se que o DataFrame contenha as colunas 'ticker', 'last_price', 'change_pct' e 'Open'.
Retorno:
None
"""
n_cols = 4
for row in batched(ticker_df.itertuples(), n_cols):
cols = st.columns(n_cols)
for col, ticker in zip(cols, row):
if ticker:
with col:
display_watchlist_card(
ticker.ticker,
ticker.ticker,
ticker.last_price,
ticker.change_pct,
ticker.Open
)
def display_overview(ticker_df):
"""
Formata e exibe um DataFrame com estilos personalizados.
Parâmetros:
ticker_df (pd.DataFrame): DataFrame contendo informações dos tickers.
Retorno:
None
Funções internas:
- format_currency(val): Formata um valor numérico como moeda.
- format_percentage(val): Formata um valor numérico como porcentagem.
- apply_odd_row_class(row): Aplica uma cor de fundo diferente para linhas ímpares.
- format_change(val): Aplica cores diferentes para valores de variação positiva e negativa.
"""
def format_currency(val):
"""
Formata um valor numérico como moeda.
Parâmetros:
val (float): Valor numérico a ser formatado.
Retorno:
str: Valor formatado como moeda.
"""
return "$ {:,.2f}".format(val)
def format_percentage(val):
"""
Formata um valor numérico como porcentagem.
Parâmetros:
val (float): Valor numérico a ser formatado.
Retorno:
str: Valor formatado como porcentagem.
"""
return "{:,.2f} %".format(val)
def apply_odd_row_class(row):
"""
Aplica uma cor de fundo diferente para linhas ímpares.
Parâmetros:
row (pd.Series): Linha do DataFrame.
Retorno:
list: Lista de estilos aplicados à linha.
"""
return [
"background-color: #f8f8f8" if row.name % 2 != 0 else "" for _ in row
]
def format_change(val):
"""
Aplica cores diferentes para valores de variação positiva e negativa.
Parâmetros:
val (float): Valor de variação.
Retorno:
str: Estilo de cor aplicado ao valor.
"""
return "color: red;" if (val < 0) else "color: green;"
styled_df = ticker_df.style.format(
{
"last_price": format_currency,
"change_pct": format_percentage
}
).apply(
apply_odd_row_class, axis=1
).map(
format_change, subset=["change_pct"]
)
st.dataframe(
styled_df,
column_order=[column for column in list(ticker_df.columns)],
column_config={
"Open": st.column_config.AreaChartColumn(
"Últimos 12 meses",
width="large",
help="Preço de abertura nos últimos 12 meses"
)
},
hide_index=True,
height=250,
use_container_width=True
)
@st.cache_data
def transform_data(ticker_df, history_dfs):
"""
Transforma os dados em DataFrames, convertendo colunas específicas para formatos apropriados (datetime e numérico),
e adiciona uma nova coluna ao ticker_df.
Parâmetros:
ticker_df (pd.DataFrame): DataFrame contendo informações dos tickers.
history_dfs (dict): Dicionário de DataFrames contendo o histórico de preços dos tickers.
Retorno:
tuple: DataFrames transformados (ticker_df, history_dfs).
"""
ticker_df["last_trade_time"] = pd.to_datetime(
ticker_df["last_trade_time"],
dayfirst=True
)
for col in ["last_price", "previous_day_price", "change", "change_pct"]:
ticker_df[col] = pd.to_numeric(
ticker_df[col], "coerce"
)
for ticker in list(ticker_df["ticker"]):
# history_dfs[ticker]["date"] = pd.to_datetime(
# history_dfs[ticker]["date"],
# dayfirst=True
# )
for col in ["Open", "High", "Low", "Close", "Volume", "Adj Close"]:
history_dfs[ticker][col] = pd.to_numeric(
history_dfs[ticker][col]
)
ticker_to_open = [
list(history_dfs[t]["Open"])
for t in list(ticker_df["ticker"])
]
ticker_df["Open"] = ticker_to_open
return ticker_df, history_dfs
@st.experimental_fragment
def display_symbol_history(ticker_df, history_dfs):
"""
Exibe o histórico de um símbolo selecionado e indicadores chave em um layout de colunas.
Parâmetros:
ticker_df (pd.DataFrame): DataFrame contendo informações dos ativos.
history_dfs (dict): Dicionário contendo DataFrames de histórico dos ativos, onde as chaves são os tickers.
Retorno:
None
"""
left_widget, right_widget, _ = st.columns([1, 1, 1.5])
selected_ticker = left_widget.selectbox(
":newspaper: Ativos",
list(history_dfs.keys())
)
selected_period = right_widget.selectbox(
":clock4: Período",
("Semanal", "Mensal", "Trimestral", "Anual"),
2
)
history_dfs = history_dfs[selected_ticker]
mapping_period = {
"Semanal": 7,
"Mensal": 31,
"Trimestral": 90,
"Anual": 365
}
today = datetime.today().date()
delay_days = mapping_period[selected_period]
history_dfs = history_dfs[
(today - pd.Timedelta(delay_days, unit="d")):today
]
f_candle = plot_candlestick(history_dfs)
left_chart, right_indicator = st.columns([1.5, 1])
with left_chart:
st.html('<span class="column_plotly"></span>')
st.plotly_chart(f_candle, use_container_width=True)
with right_indicator:
st.html('<span class="column_indicator"></span>')
st.subheader("Period Metrics")
left_column, right_column = st.columns(2)
with left_column:
st.html('<span class="low_indicator"></span>')
st.metric(
"Menor volume negociado",
f'{history_dfs["Volume"].min():,}'
)
st.metric(
"Menor preço de fechamento",
f'{history_dfs["Close"].min():,}'
)
with right_column:
st.html('<span class="high_indicator"></span>')
st.metric(
"Maior volume negociado",
f'{history_dfs["Volume"].max():,}'
)
st.metric(
"Maior preço de fechamento",
f'{history_dfs["Close"].max():,}'
)
with st.container():
st.html('<span class="bottom_indicator"></span>')
st.metric(
"Média de volume negociado",
f'{history_dfs["Volume"].mean():,}'
)
st.metric(
"Atual Market Cap",
"{:,} $".format(
ticker_df[ticker_df["ticker"] == selected_ticker][
"marketcap"
].values[0]
),
)
def plot_candlestick(history_dfs):
"""
Cria um gráfico de candlestick com um gráfico de barras para o volume negociado.
Parâmetros:
history_dfs (pd.DataFrame): DataFrame contendo os dados históricos de preços de ações.
Espera-se que o DataFrame contenha as colunas 'Open', 'High', 'Low', 'Close' e 'Volume'.
Retorno:
f_candle (plotly.graph_objs._figure.Figure): Objeto Figure do Plotly contendo o gráfico de candlestick.
"""
f_candle = make_subplots(
rows=2,
cols=1,
shared_xaxes=True,
row_heights=[0.7, 0.3],
vertical_spacing=0.1
)
f_candle.add_trace(
go.Candlestick(
x=history_dfs.index,
open=history_dfs["Open"],
high=history_dfs["High"],
low=history_dfs["Low"],
close=history_dfs["Close"],
name="Reais",
),
row=1,
col=1
)
f_candle.add_trace(
go.Bar(
x=history_dfs.index,
y=history_dfs["Volume"],
name="Volume Negociado"
),
row=2,
col=1
)
f_candle.update_layout(
title="Tendências de preços de ações",
showlegend=True,
xaxis_rangeslider_visible=False,
yaxis1=dict(title="OHLC"),
yaxis2=dict(title="Volume"),
hovermode="x"
)
f_candle.update_layout(
title_font_family="Open Sans",
title_font_color="#174C4F",
title_font_size=32,
font_size=16,
margin=dict(l=80, r=80, t=100, b=80, pad=0),
height=500,
)
f_candle.update_xaxes(title_text="Date", row=2, col=1)
f_candle.update_traces(selector=dict(name="Reais"), showlegend=True)
return f_candle
@st.cache_data
def download_data(tickers, start_date, end_date=datetime.now(), period="1d"):
"""
Baixa dados históricos de preços para uma lista de tickers e calcula métricas financeiras.
Parâmetros:
tickers (list): Lista de tickers para os quais os dados serão baixados.
start_date (str): Data de início no formato 'YYYY-MM-DD'.
end_date (str, opcional): Data de término no formato 'YYYY-MM-DD'. Padrão é a data e hora atual.
period (str, opcional): Frequência dos dados. Padrão é '1d' (diário).
Retorno:
tuple: Contém um DataFrame com os dados dos tickers e um dicionário com os dados históricos para cada ticker.
"""
history_dfs = {}
ticker_data = []
for ticker in tickers:
data = yf.download(ticker, start=start_date, end=end_date, period=period)
history_dfs[ticker] = data
last_trade_time = data.index[-1]
last_price = data['Close'].iloc[-1]
# calcula o preço de fechamento do dia anterior
previous_day_price = data['Close'].iloc[-2] if len(data) > 1 else last_price
change = last_price - previous_day_price
change_pct = (change / previous_day_price) * 100
marketcap = yf.Ticker(ticker).info
marketcap = marketcap['marketCap']
ticker_data.append({
'ticker': ticker,
'last_trade_time': last_trade_time,
'last_price': last_price,
'previous_day_price': previous_day_price,
'change': change,
'change_pct': change_pct,
'marketcap': marketcap,
})
ticker_df = pd.DataFrame(ticker_data)
return ticker_df, history_dfs
st.html('<h1 class="title">Ações - Dashboard</h1>')
# Dicionário de tickers
dict_tickers = {
'BANCO DO BRASIL': 'BBAS3.SA',
'COPASA': 'CSMG3.SA',
'SANEPAR': 'SAPR11.SA',
'TAESA': 'TAEE11.SA',
'BB SEGURIDADE': 'BBSE3.SA',
'PETROBRAS': 'PETR4.SA'
}
ticker_df, history_dfs = download_data(list(dict_tickers.values()), start_date='2024-01-01', end_date=datetime.now())
ticker_df, history_dfs = transform_data(ticker_df, history_dfs)
display_watchlist(ticker_df)
st.divider()
display_symbol_history(ticker_df, history_dfs)
display_overview(ticker_df)