我正试图用布林带绘制图形的部分。但是,在对图形条带着色时,某些部分看起来是用2种颜色着色或与颜色重叠,
见下图:
请参阅标有黄色矩形的部分。我该怎么做才能避免颜色重叠?
如何避免这种重叠?因为它使能见度无法理解当前呈现的颜色。此documentation目前无效。
我只是使用以下内容:
//--- plot Label1
#property indicator_label1 "UpTrend"
#property indicator_type1 DRAW_FILLING
#property indicator_color1 DarkGreen//C'10,10,70'
#property indicator_style1 STYLE_SOLID
#property indicator_width1 1
//--- plot Label2
#property indicator_label2 "DnTrend"
#property indicator_type2 DRAW_FILLING
#property indicator_color2 C'70,10,10'
#property indicator_style2 STYLE_SOLID
#property indicator_width2 1
//--- plot Label3
#property indicator_label3 "Flat"
#property indicator_type3 DRAW_FILLING
#property indicator_color3 Aqua//C'50,50,50'
#property indicator_style3 STYLE_SOLID
#property indicator_width3 1