Mustafa wrote: Tue Jan 10, 2023 1:36 pm
Thank you... The candles are no longer an issue. Now they are on the foreground. But the size and color of the ZZ Line still can not be changed. It would be great help that the color and size of the XU-48 ZZ Line 4 could also be edited.... Would be obliged for that modification. That is the only thing I have on the chart and the only thing I want on the chart..
You can change the ZZ width in the start of the MQL4 file.
//+------------------------------------------------------------------------------------------------------------------+
//+ [Knowledge of the ancients] \!/ [XU v48-ZIGZAG 4.mq4] +
//+ (ò ó) +
//+-------------------------------------------------o0o---(_)---o0o--------------------------------------------------+
#property link "
viewtopic.php?p=1295442917#p1295442917"
#property description "THIS IS A FREE INDICATOR WITH NO TIME RESTRICTIONS"
#property description " "
#property description "Welcome to the XARD UNIVERSE"
#property description " "
#property description "Let the light shine and illuminate your trading world"
#property description "and with it secure your financial prosperity"
#property indicator_chart_window
#property indicator_buffers 2
int Type;
extern bool showZZline = true;
color zzCol = clrDodgerBlue;
int zzWidth = 4;
// Количество баров для расчета экстремумов
// не может быть меньше 2
extern int ExtPeriod = 36;
// Минимальное расстояние цены между соседними пиком и впадиной (иначе не регистрируется)
int MinAmplitude = 5;//10;
// Минимальное движение цены в пунктах на нулевом баре для перерасчета индикатора
extern int MinMotion = 0;
// Использовать более точный алгоритм вычисления порядка формирования High/Low бара
extern bool UseSmallerTFforEB = true;
// Сколько баров необходимо проверять на корректность уже просчитанной истории
// 0 - всю историю
extern int ExtraCheckedBarsCount = 0;