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