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 @@ -369,27 +369,27 @@ fig.add_trace(
369369 go.Scatter(x = list (df.index),
370370 y = list (df.High),
371371 name = " High" ,
372- line = dict (color = " #33CFA5 " )))
372+ line = dict (color = " MediumSlateBlue " )))
373373
374374fig.add_trace(
375375 go.Scatter(x = list (df.index),
376376 y = [df.High.mean()] * len (df.index),
377377 name = " High Average" ,
378378 visible = False ,
379- line = dict (color = " #33CFA5 " , dash = " dash" )))
379+ line = dict (color = " MediumSlateBlue " , dash = " dash" )))
380380
381381fig.add_trace(
382382 go.Scatter(x = list (df.index),
383383 y = list (df.Low),
384384 name = " Low" ,
385- line = dict (color = " #F06A6A " )))
385+ line = dict (color = " DarkOrange " )))
386386
387387fig.add_trace(
388388 go.Scatter(x = list (df.index),
389389 y = [df.Low.mean()] * len (df.index),
390390 name = " Low Average" ,
391391 visible = False ,
392- line = dict (color = " #F06A6A " , dash = " dash" )))
392+ line = dict (color = " DarkOrange " , dash = " dash" )))
393393
394394# Add Annotations and Buttons
395395high_annotations = [dict (x = - 0.05 ,
You can’t perform that action at this time.
0 commit comments