How to use Draw-Filing in mql4?

 

HI I want create ichimoku indicator for training. I want use Draw_Filing for show kumo , But when I want create new project you can select it (picture 1). Hower When You want change the type of line you can access to Draw_filing (picture 2). there is no error but not working. how can i use draw_filing in mql4?

also when i use histogram to draw kumo, only the green kumo draw (picture 3). the current code for kumo is:

 if(SenkuABuffer[i]>SenkuBBuffer[i])
        {
         KumoUpColorBuffer[i]=  SenkuABuffer[i];
         KumoDownColorBuffer[i]= EMPTY_VALUE;
        }
      else
        {
         KumoUpColorBuffer[i]=  EMPTY_VALUE;
         KumoDownColorBuffer[i]= SenkuABuffer[i];
        }

So how can i create kumo color with Filing and histogram in mql4?

Files:
1.png  16 kb
2.png  13 kb
3.png  34 kb
 

DRAW_FILLING does not work in MQL4.

Topics concerning MT4 and MQL4 have their own section.

In future please post in the correct section.

I have moved your topic to the MQL4 and Metatrader 4 section.

 
Keith Watford:

DRAW_FILLING does not work in MQL4.

Topics concerning MT4 and MQL4 have their own section.

In future please post in the correct section.

I have moved your topic to the MQL4 and Metatrader 4 section.

OK Sorry.

so how can draw kumo and filling with histogram?

 
justlink: OK Sorry. so how can draw kumo and filling with histogram?

There are many examples in the CodeBase of Ichimoku indicators in MQL4. Do a search for "Ichimoku" and filter by "CodeBase" on the left panel. Then choose one of the examples you like and see how they do it!