Ichimoku, Farbe ändern

 

Hallo,

kann man die Farben beim Ichimoku ändern-bzw. anpassen, insb. bei dem Kijun-sen, da der in einem ziemlichen dunkelblau daherkommt und im Chart für mich kaum wahrnehmbar erscheint?

 

Ich binde den so in das Programm ein:

   iIchimokuHandle = iIchimoku(_Symbol, _Period, Tenkan_Sen, Kijun_Sen, Senkou_Span_B);
 
Stell den Kursor auf
iIchimoku

drück F1 und verwende und ändere das Beispiel aus der Referenz:

...
#property indicator_chart_window 
#property indicator_buffers 5 
#property indicator_plots   4 
//--- 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  clrSandyBrown, clrThistle 
#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 
....