【发布时间】:2018-09-26 05:32:43
【问题描述】:
我正在尝试使用布林带绘制图表的各个部分。但是在为图表带着色时,某些部分似乎用 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
【问题讨论】:
标签: mql5 metatrader5 mt