File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -365,27 +365,27 @@ fig.add_trace(
365
365
go.Scatter(x=list(df.Date),
366
366
y=list(df.High),
367
367
name="High",
368
- line=dict(color="#33CFA5 ")))
368
+ line=dict(color="DarkBlue ")))
369
369
370
370
fig.add_trace(
371
371
go.Scatter(x=list(df.Date),
372
372
y=[df.High.mean()] * len(df.index),
373
373
name="High Average",
374
374
visible=False,
375
- line=dict(color="#33CFA5 ", dash="dash")))
375
+ line=dict(color="DarkBlue ", dash="dash")))
376
376
377
377
fig.add_trace(
378
378
go.Scatter(x=list(df.Date),
379
379
y=list(df.Low),
380
380
name="Low",
381
- line=dict(color="#F06A6A ")))
381
+ line=dict(color="Crimson ")))
382
382
383
383
fig.add_trace(
384
384
go.Scatter(x=list(df.Date),
385
385
y=[df.Low.mean()] * len(df.index),
386
386
name="Low Average",
387
387
visible=False,
388
- line=dict(color="#F06A6A ", dash="dash")))
388
+ line=dict(color="Crimson ", dash="dash")))
389
389
390
390
# Add Annotations and Buttons
391
391
high_annotations = [dict(x="2016-03-01",
You can’t perform that action at this time.
0 commit comments