Wishes for MT5 - page 34

 

A tool like the "Fibonacci Meter" is sorely lacking. In my opinion, it should be similar to the Fibonacci extension, only 0% and 100% levels should be fixed at the levels of the first two control points, while the position of the third control point should display the third line and the calculated percentage for this point with an accuracy of 0.1%.

And for the group of Fibonacci tools on the "Levels" tab, I would like two more buttons: "Save" and "Load". Sometimes it is necessary to view the 30-level Fibo, but it is inconvenient to use it permanently - it lags on the chart and it is tiresome to enter all 32 levels anew.

 

As I understand it, mt5 only allows drawing indicator on one of two windows: indicator_separate_window or indicator_chart_window. Correct me if I'm wrong. But I want to draw it on both windows at the same time. For example, I want to paint bars with different colours depending on indicator values, which would be drawn in a separate window. Is it possible to specify somehow in the preamble in which window each buffer will be drawn. Something like this

#property indicator_buffers 2
#property indicator_plots   2
//--- indicator

#property indicator_window1 SEPARATE_WINDOW
#property indicator_label1  "Indicator"
#property indicator_type1   DRAW_LINE
#property indicator_color1  Blue
#property indicator_style1  STYLE_SOLID
#property indicator_width1  1
//--- moving average

#property indicator_window2 CHART_WINDOW
#property indicator_label2  "my MA"
#property indicator_type2   DRAW_LINE
#property indicator_color2  Red
#property indicator_style2  STYLE_SOLID
#property indicator_width2  1

where the new parameter is entered:

indicator_window - specifies in which window this indicator will be built

Документация по MQL5: Стандартные константы, перечисления и структуры / Константы графиков / Свойства графиков
Документация по MQL5: Стандартные константы, перечисления и структуры / Константы графиков / Свойства графиков
  • www.mql5.com
Стандартные константы, перечисления и структуры / Константы графиков / Свойства графиков - Документация по MQL5
 
gpwr:

As I understand it, mt5 only allows drawing indicator on one of two windows: indicator_separate_window or indicator_chart_window. Correct me if I'm wrong. But I want to draw it on both windows at the same time. For example, I want to paint bars with different colours depending on indicator values, which would be drawn in a separate window. Is it possible to specify somehow in the preamble in which window each buffer will be drawn. Something like this

where the new parameter is entered:

indicator_window - specifies in which window this indicator will be built

A very valuable suggestion. I myself have needed to build an indicator in the main window and a subwindow at the same time. The problem is of course solved by creating two indicators working together, but this is inconvenient.
 
gpwr:

....

indicator_window - indicates in which window the indicator will be built

hooray I'm not alone. I'm joining a request that's been going on for over two years https://www.mql5.com/ru/forum/105052/page53#102261
Пожелания к MQL5 - MQL4 форум
  • www.mql5.com
Пожелания к MQL5 - MQL4 форум
 
Prival:
hooray I'm not the only one. I'm joining the request that I've been asking for over two yearshttps://www.mql5.com/ru/forum/105052/page53#102261.

I agree, if in fours could draw buffers by objects and thus remove the problem of simultaneous display both in separates and in the chart, in fives indicators objects do not draw, so the wish objectively has arisen.

i sometimes have the urge to create several separates at once,

I will also join the request, which is already two years old.

 
Urain:
I support it, if in the fourth one you could draw buffers with objects and thus remove the problem of simultaneous display in separatet and in the chart, in the fifth one indicators do not draw objects, so the wish is objectively overdue.
Indicators do draw objects. They already do.
 

joo:
Индикаторы объекты рисуют. Уже рисуют.

Yes, they have been drawing from the beginning, and in a separate window too.

 
Alexander:

MetaTrader 5 Client Terminal build 294

  1. Terminal: Rewritten mechanism of object magnetism - now point time binding is always accurate to minutes, which saves construction when switching to small periods.

Well done! Score! Thanks! Life is much easier now!
 

Currently, when painting a candlestick in mt5 (or even in mt4), you cannot distinguish between open and close because the body of the candlestick is always dark, as shown here

Is it possible to make candlestick coloring not change the type of candlestick (open>close or close>open)?

 
Check out the ColorCandlesDaily indicator
Reason: