-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp2.py
275 lines (246 loc) · 7.74 KB
/
app2.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
#lib central
import dash
#Elementos do dash
from dash import dcc
from dash import html
#import dash_core_components as dcc #Isso já está em depreciado. Correto seria "from dash import dcc"
#import dash_html_components as html #Isso já está depreciado. Correto seria "from dash import html"
import dash_bootstrap_components as dbc
from dash.dependencies import Input, Output
#Pacotes de visualização
import plotly.graph_objs as go
import pandas as pd
import yfinance as yf
yf.pdr_override() #Para fazer o carregamento
# Especificar o símbolo da ação e o período de tempo desejado
Simbolo = 'WEGE3.SA'
Fim = '2021-12-31'
Periodo = '6mo'
# Coletando os dados
Dados = yf.download(Simbolo, period=Periodo)
Dados['Media_Movel'] = Dados['Close'].rolling(window=5).mean()
# Função para atualizar os dados com base no período selecionado
def atualizar_dados(periodo_selecionado):
global Periodo, Dados
if periodo_selecionado == '1y':
Periodo = '1y'
elif periodo_selecionado == '3mo':
Periodo = '3mo'
elif periodo_selecionado == '6mo':
Periodo = '6mo'
Dados = yf.download(Simbolo, period=Periodo)
Dados['Media_Movel'] = Dados['Close'].rolling(window=5).mean()
# Layout do aplicativo. Faz a conexão com o aplicativo dash e os layouts prontos
app = dash.Dash(
__name__,
title='Evento Dashboard',
#Definir os estilos
#Link dos estilos = https://dash-bootstrap-components.opensource.faculty.ai/docs/themes/
external_stylesheets=[
dbc.themes.DARKLY,
'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css',
'https://fonts.googleapis.com/css2?family=Joan&family=Roboto:ital,wght@0,100;1,300&family=Source+Sans+Pro:ital,wght@0,400;1,300&display=swap'
]
)
# Gráfico Candlestick
Grafico_Candlestick = go.Figure(
data=[
go.Candlestick(
x=Dados.index,
open=Dados['Open'],
high=Dados['High'],
low=Dados['Low'],
close=Dados['Close'],
increasing_line_color='red',
decreasing_line_color='green'
)
]
)
Grafico_Candlestick.update_layout(
xaxis_rangeslider_visible=False,
title='Análise Fechamento',
xaxis_title='Período',
yaxis_title='Preço de Fechamento'
)
Grafico_Candlestick.update_layout(
template="plotly_dark",
plot_bgcolor='rgba(0,0,0,0)',
font=dict(color='white'),
)
# Gráfico de Linhas
Grafico_Linhas = go.Figure()
Grafico_Linhas.add_trace(go.Scatter(
x=Dados.index,
y=Dados['Media_Movel'],
mode='lines',
name='Média Móvel',
line=dict(color='rgb(158, 58, 171)')
))
Grafico_Linhas.add_trace(go.Scatter(
x=Dados.index,
y=Dados['Close'],
mode='lines',
name='Fechamento',
line=dict(color='green')
))
Grafico_Linhas.update_layout(
title='Análise Média Móvel e Fechamento',
xaxis_title='Período',
yaxis_title='Preço',
template='plotly_dark',
legend=dict(
orientation='h',
yanchor='bottom',
y=1.02,
xanchor='right',
x=1,
font=dict(size=9)
)
)
# Layout do aplicativo (FRONT-END)
app.layout = html.Div(
#Reproduz todos os elementos da página
children=[
#Barra superior (NAVBAR)
html.Div(
className='navbar navbar-expand-lg bg-primary',
style={
'height': 'fit-content',
#'background': '#111111',
'display': 'flex',
'flex-direction': 'row',
'align-items': 'center',
'justify-content': 'space-between',
'border-bottom': '1px solid #4b5460',
'padding': '1rem 5rem',
'width': '100%',
},
children=[
html.Div(
className='banner-title',
children=[
html.H5(
['Dashboard'],
style={
'font-family': 'open sans semi bold, sans-serif',
'font-weight': '500'
}
),
html.H6('Análise BITCOIN')
]
),
html.Div(
className='banner-logo',
children=[
html.Img(src=app.get_asset_url('icone_bitcoin.png'), height='60px', alt='logo')
]
)
]
),
html.Div(
className="container",
children=[
html.Div(
[
html.Label("Selecione o período", style={'color': 'white'}),
dcc.Dropdown(
id='periodo-dropdown',
options=[
{'label': '1 Ano', 'value': '1y'},
{'label': '3 Meses', 'value': '3mo'},
{'label': '6 Meses', 'value': '6mo'}
],
value='6mo',
clearable=False,
style={ 'color': 'black'},
className='custom-dropdown'
),
],
className="my-4"
),
html.Div(
[
dcc.Graph(
id='candlestick-chart',
figure=Grafico_Candlestick
)
],
className="my-4"
),
html.Div(
[
dcc.Graph(
id='graph2',
figure=Grafico_Linhas
)
],
className="my-4"
),
]
)
]
)
@app.callback(
Output('candlestick-chart', 'figure'),
Output('graph2', 'figure'),
Input('periodo-dropdown', 'value')
)
def atualizar_graficos(periodo_selecionado):
atualizar_dados(periodo_selecionado)
Grafico_Candlestick = go.Figure(
data=[
go.Candlestick(
x=Dados.index,
open=Dados['Open'],
high=Dados['High'],
low=Dados['Low'],
close=Dados['Close'],
increasing_line_color='red',
decreasing_line_color='green'
)
]
)
Grafico_Candlestick.update_layout(
xaxis_rangeslider_visible=False,
title='Análise Fechamento',
xaxis_title='Período',
yaxis_title='Preço de Fechamento'
)
Grafico_Candlestick.update_layout(
template="plotly_dark",
plot_bgcolor='rgba(0,0,0,0)',
font=dict(color='white'),
)
Grafico_Linhas = go.Figure()
Grafico_Linhas.add_trace(go.Scatter(
x=Dados.index,
y=Dados['Media_Movel'],
mode='lines',
name='Média Móvel',
line=dict(color='rgb(158, 58, 171)')
))
Grafico_Linhas.add_trace(go.Scatter(
x=Dados.index,
y=Dados['Close'],
mode='lines',
name='Fechamento',
line=dict(color='green')
))
Grafico_Linhas.update_layout(
title='Análise Média Móvel e Fechamento',
xaxis_title='Período',
yaxis_title='Preço',
template='plotly_dark',
legend=dict(
orientation='h',
yanchor='bottom',
y=1.02,
xanchor='right',
x=1,
font=dict(size=9)
)
)
return Grafico_Candlestick, Grafico_Linhas
#Rodar a aplicação
if __name__ == '__main__':
app.run_server(debug=True)