Skip to content

Commit d980975

Browse files
committed
plot feature updated
1 parent 729a945 commit d980975

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ def CryptoForecast(SelectCrypto):
133133
y="Close",
134134
size="Volume",
135135
title=SelectCrypto,
136+
name = "Price in USD",
136137
labels={"Date": "Date", "Close": "Closing Price"},
137138
template="plotly_dark",
138139
#height = 500,
@@ -151,7 +152,7 @@ def CryptoForecast(SelectCrypto):
151152
x=plot_data["Date"],
152153
y=plot_data["yhat_upper"],
153154
mode="lines",
154-
line=dict(dash="dot"),
155+
line=dict(dash="dot", color="1F77B4"),
155156
name="Upper Band",
156157
)
157158
)

0 commit comments

Comments
 (0)