@@ -1040,7 +1040,7 @@ def plot_day_summary2(ax, opens, closes, highs, lows, ticksize=4,
1040
1040
"or `plot_day_summary2_ohlc`, "
1041
1041
"which uses the open-high-low-close order. "
1042
1042
"This function will be removed in 1.5" , mplDeprecation )
1043
- return plot_day_summary_ohlc (ax , opens , highs , lows , closes , ticksize ,
1043
+ return plot_day_summary2_ohlc (ax , opens , highs , lows , closes , ticksize ,
1044
1044
colorup , colordown )
1045
1045
1046
1046
@@ -1077,7 +1077,7 @@ def plot_day_summary2_ochl(ax, opens, closes, highs, lows, ticksize=4,
1077
1077
a list of lines added to the axes
1078
1078
"""
1079
1079
1080
- return plot_day_summary_ohlc (ax , opens , highs , lows , closes , ticksize ,
1080
+ return plot_day_summary2_ohlc (ax , opens , highs , lows , closes , ticksize ,
1081
1081
colorup , colordown )
1082
1082
1083
1083
@@ -1228,7 +1228,7 @@ def candlestick2_ochl(ax, opens, closes, highs, lows, width=4,
1228
1228
(lineCollection, barCollection)
1229
1229
"""
1230
1230
1231
- candlestick_ohlc (ax , opens , highs , closes , lows , width = width ,
1231
+ candlestick2_ohlc (ax , opens , highs , closes , lows , width = width ,
1232
1232
colorup = colorup , colordown = colordown ,
1233
1233
alpha = alpha )
1234
1234
@@ -1279,7 +1279,7 @@ def candlestick2(ax, opens, closes, highs, lows, width=4,
1279
1279
"which uses the open-high-low-close order."
1280
1280
"This function will be removed in 1.5" , mplDeprecation )
1281
1281
1282
- candlestick_ohlc (ax , opens , highs , lows , closes , width = width ,
1282
+ candlestick2_ohlc (ax , opens , highs , lows , closes , width = width ,
1283
1283
colorup = colorup , colordown = colordown ,
1284
1284
alpha = alpha )
1285
1285
0 commit comments