File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -523,8 +523,8 @@ def __eq__(self, other):
523
523
colors = colors and cycle (_as_list (colors )) or (
524
524
cycle ([next (ohlc_colors )]) if is_overlay else colorgen ())
525
525
legend_label = LegendStr (value .name )
526
- indicator_max = value .df .max (axis = 'columns' )
527
- indicator_min = value .df .min (axis = 'columns' )
526
+ indicator_max = value .df .max (axis = 'columns' )
527
+ indicator_min = value .df .min (axis = 'columns' )
528
528
source .add (indicator_max , f'indicator_{ i } _range_max' )
529
529
source .add (indicator_min , f'indicator_{ i } _range_min' )
530
530
for j , arr in enumerate (value , 1 ):
@@ -612,7 +612,7 @@ def __eq__(self, other):
612
612
custom_js_args = dict (ohlc_range = fig_ohlc .y_range ,
613
613
source = source )
614
614
if plot_volume :
615
- custom_js_args .update (volume_range = fig_volume .y_range )
615
+ custom_js_args .update (volume_range = fig_volume .y_range )
616
616
indicator_ranges = {}
617
617
for idx , indicator in enumerate (indicator_figs ):
618
618
indicator_range_key = f'indicator_{ idx } _range'
You can’t perform that action at this time.
0 commit comments