如何隐藏 RSI 柱上的彩色零点
How to hide the colored zeros on RSI bar
我正在使用“[fikira] RSI + 背离”指标。 Link and code here
我已经编辑了代码并更改了颜色等
试图隐藏 RSI 线中常规和隐藏的牛市和熊市背离数字的彩色零点 (0.00)。 (当然除了第一个黄色 RSI)
Here is a Screenshot
有什么建议吗?
提前致谢!
不知道我理解的对不对,要去掉那个rsi中出现的箭头吗?在那种情况下,您只需删除这些 plotchar:
plotchar(arrows and div_bull_1 and not div_bull_1[1] and show_div, char="↑︎︎", title="Bull Div 1",
location=location.bottom, color= color.green, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bull_2 and not div_bull_2[1] and show_div, char="↑︎︎", title="Bull Div 2",
location=location.bottom, color= color.green, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bull_3 and not div_bull_3[1] and show_div, char="↑︎︎", title="Bull Div 3",
location=location.bottom, color= color.green, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bull_4 and not div_bull_4[1] and show_div, char="↑︎︎", title="Bull Div 4",
location=location.bottom, color= color.lime, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bull_5 and not div_bull_5[1] and show_div, char="↑︎︎", title="Bull Div 5",
location=location.bottom, color= color.lime, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bull_6 and not div_bull_6[1] and show_div, char="↑︎︎", title="Bull Div 6",
location=location.bottom, color= color.lime, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bull_7 and not div_bull_7[1] and show_div, char="↑︎︎", title="Bull Div 7",
location=location.bottom, color= color.aqua, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bull_8 and not div_bull_8[1] and show_div, char="↑︎︎", title="Bull Div 8",
location=location.bottom, color= color.aqua, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bear_1 and not div_bear_1[1] and show_div, char="↓︎︎", title="Bear Div 1",
location=location.top, color= color.orange, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bear_2 and not div_bear_2[1] and show_div, char="↓︎︎", title="Bear Div 2",
location=location.top, color= color.orange, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bear_3 and not div_bear_3[1] and show_div, char="↓︎︎", title="Bear Div 3",
location=location.top, color= color.orange, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bear_4 and not div_bear_4[1] and show_div, char="↓︎︎", title="Bear Div 4",
location=location.top, color= color.red, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bear_5 and not div_bear_5[1] and show_div, char="↓︎︎", title="Bear Div 5",
location=location.top, color= color.red, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bear_6 and not div_bear_6[1] and show_div, char="↓︎︎", title="Bear Div 6",
location=location.top, color= color.red, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bear_7 and not div_bear_7[1] and show_div, char="↓︎︎", title="Bear Div 7",
location=location.top, color= color.purple, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bear_8 and not div_bear_8[1] and show_div, char="↓︎︎", title="Bear Div 8",
location=location.top, color= color.purple, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and hid_div_bull_1 and not hid_div_bull_1[1] and show_hiddiv, char="↑︎︎", title="Hidden Bull Div 1",
location=location.bottom, color= color.white, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and hid_div_bull_2 and not hid_div_bull_2[1] and show_hiddiv, char="↑︎︎", title="Hidden Bull Div 2",
location=location.bottom, color= color.white, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and hid_div_bull_3 and not hid_div_bull_3[1] and show_hiddiv, char="↑︎︎", title="Hidden Bull Div 3",
location=location.bottom, color= color.white, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and hid_div_bull_4 and not hid_div_bull_4[1] and show_hiddiv, char="↑︎︎", title="Hidden Bull Div 4",
location=location.bottom, color= color.white, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and hid_div_bull_5 and not hid_div_bull_5[1] and show_hiddiv, char="↑︎︎", title="Hidden Bull Div 5",
location=location.bottom, color= color.white, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and hid_div_bull_6 and not hid_div_bull_6[1] and show_hiddiv, char="↑︎︎", title="Hidden Bull Div 6",
location=location.bottom, color= color.white, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and hid_div_bull_7 and not hid_div_bull_7[1] and show_hiddiv, char="↑︎︎", title="Hidden Bull Div 7",
location=location.bottom, color= color.white, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and hid_div_bull_8 and not hid_div_bull_8[1] and show_hiddiv, char="↑︎︎", title="Hidden Bull Div 8",
location=location.bottom, color= color.white, size=size.tiny, transp=0, offset=-1)
我正在使用“[fikira] RSI + 背离”指标。 Link and code here
我已经编辑了代码并更改了颜色等
试图隐藏 RSI 线中常规和隐藏的牛市和熊市背离数字的彩色零点 (0.00)。 (当然除了第一个黄色 RSI)
Here is a Screenshot
有什么建议吗? 提前致谢!
不知道我理解的对不对,要去掉那个rsi中出现的箭头吗?在那种情况下,您只需删除这些 plotchar:
plotchar(arrows and div_bull_1 and not div_bull_1[1] and show_div, char="↑︎︎", title="Bull Div 1",
location=location.bottom, color= color.green, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bull_2 and not div_bull_2[1] and show_div, char="↑︎︎", title="Bull Div 2",
location=location.bottom, color= color.green, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bull_3 and not div_bull_3[1] and show_div, char="↑︎︎", title="Bull Div 3",
location=location.bottom, color= color.green, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bull_4 and not div_bull_4[1] and show_div, char="↑︎︎", title="Bull Div 4",
location=location.bottom, color= color.lime, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bull_5 and not div_bull_5[1] and show_div, char="↑︎︎", title="Bull Div 5",
location=location.bottom, color= color.lime, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bull_6 and not div_bull_6[1] and show_div, char="↑︎︎", title="Bull Div 6",
location=location.bottom, color= color.lime, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bull_7 and not div_bull_7[1] and show_div, char="↑︎︎", title="Bull Div 7",
location=location.bottom, color= color.aqua, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bull_8 and not div_bull_8[1] and show_div, char="↑︎︎", title="Bull Div 8",
location=location.bottom, color= color.aqua, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bear_1 and not div_bear_1[1] and show_div, char="↓︎︎", title="Bear Div 1",
location=location.top, color= color.orange, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bear_2 and not div_bear_2[1] and show_div, char="↓︎︎", title="Bear Div 2",
location=location.top, color= color.orange, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bear_3 and not div_bear_3[1] and show_div, char="↓︎︎", title="Bear Div 3",
location=location.top, color= color.orange, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bear_4 and not div_bear_4[1] and show_div, char="↓︎︎", title="Bear Div 4",
location=location.top, color= color.red, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bear_5 and not div_bear_5[1] and show_div, char="↓︎︎", title="Bear Div 5",
location=location.top, color= color.red, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bear_6 and not div_bear_6[1] and show_div, char="↓︎︎", title="Bear Div 6",
location=location.top, color= color.red, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bear_7 and not div_bear_7[1] and show_div, char="↓︎︎", title="Bear Div 7",
location=location.top, color= color.purple, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and div_bear_8 and not div_bear_8[1] and show_div, char="↓︎︎", title="Bear Div 8",
location=location.top, color= color.purple, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and hid_div_bull_1 and not hid_div_bull_1[1] and show_hiddiv, char="↑︎︎", title="Hidden Bull Div 1",
location=location.bottom, color= color.white, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and hid_div_bull_2 and not hid_div_bull_2[1] and show_hiddiv, char="↑︎︎", title="Hidden Bull Div 2",
location=location.bottom, color= color.white, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and hid_div_bull_3 and not hid_div_bull_3[1] and show_hiddiv, char="↑︎︎", title="Hidden Bull Div 3",
location=location.bottom, color= color.white, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and hid_div_bull_4 and not hid_div_bull_4[1] and show_hiddiv, char="↑︎︎", title="Hidden Bull Div 4",
location=location.bottom, color= color.white, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and hid_div_bull_5 and not hid_div_bull_5[1] and show_hiddiv, char="↑︎︎", title="Hidden Bull Div 5",
location=location.bottom, color= color.white, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and hid_div_bull_6 and not hid_div_bull_6[1] and show_hiddiv, char="↑︎︎", title="Hidden Bull Div 6",
location=location.bottom, color= color.white, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and hid_div_bull_7 and not hid_div_bull_7[1] and show_hiddiv, char="↑︎︎", title="Hidden Bull Div 7",
location=location.bottom, color= color.white, size=size.tiny, transp=0, offset=-1)
plotchar(arrows and hid_div_bull_8 and not hid_div_bull_8[1] and show_hiddiv, char="↑︎︎", title="Hidden Bull Div 8",
location=location.bottom, color= color.white, size=size.tiny, transp=0, offset=-1)