Bollinger Band - visuelle Darstellung MT5 Terminal & Webterminal

 

Hallo zusammen,

ich würde gerne das Bollinger Band in meinem MT5 Terminal visuell so dargestellt haben, wie es auch im Webterminal funktioniert. Mir fehlt optisch der farbliche Hintergrund, was eine bessere Orientierung darstellt, als nur die Linien.

Gibt es da einen einfachen Trick? Oder wurde das vielleicht schonmal programmiert? Wenn nein, wäre es möglich, dass MetaQuotes hier eine generelle Optimierung einführt?

Danke für eure Antworten.

Viele Grüße

Bollinger Band Webterminal

 

Das geht - irgendwie.

Schau Dir den iIchimoku an, er ist Teil des Terminals:

Der hat auch Wolken die farblich unterlegt sind: https://www.mql5.com/en/docs/indicators/iichimoku

Schau genau auf die #properties:  #property indicator_type3   DRAW_FILLING

//--- the Tenkan_sen plot
#property indicator_label1  "Tenkan_sen"
#property indicator_type1   DRAW_LINE
#property indicator_color1  clrRed
#property indicator_style1  STYLE_SOLID
#property indicator_width1  1
//--- the Kijun_sen plot
#property indicator_label2  "Kijun_sen"
#property indicator_type2   DRAW_LINE
#property indicator_color2  clrBlue
#property indicator_style2  STYLE_SOLID
#property indicator_width2  1
//--- the Senkou_Span plot
#property indicator_label3  "Senkou Span A;Senkou Span B" // two fields will be shown in Data Window
#property indicator_type3   DRAW_FILLING
#property indicator_color3  clrSandyBrownclrThistle
#property indicator_style3  STYLE_SOLID
#property indicator_width3  1
//--- the Chikou_Span plot
#property indicator_label4  "Chinkou_Span"
#property indicator_type4   DRAW_LINE
#property indicator_color4  clrLime
#property indicator_style4  STYLE_SOLID
#property indicator_width4  1
Documentation on MQL5: Technical Indicators / iIchimoku
Documentation on MQL5: Technical Indicators / iIchimoku
  • www.mql5.com
iIchimoku - Technical Indicators - MQL5 Reference - Reference on algorithmic/automated trading language for MetaTrader 5
 

Ja geht mit DRAW FILLING

ausprobiert hab ichs nie weil mich stört das eher

 

Vielen Dank für Eure Hilfestellung, ich schaue mir das mit "Draw Filling" mal in Ruhe an und versuche das im Indikator so darzustellen.

Grund der Beschwerde: