Help me find this indicator: price on chart

 
Hi all!
Who knows, how I can indicate the price on chart in painted area beetwen two Simple MA set on high and low??
For example, this chart:

Thanks
Best regards
 
can you post the indicator you used to paint this channel? and how did you remove the candles?
 
zzuegg, I draw this channel between two SMA(1) and paint out in picture redactor (for example).

And I ask: HOW I can do it in MT4??
 
ahh.
i understand. you could use the Triangle to paint the channel.

T1.1 =High[pos+1];
T1.2 =Low[pos+1];
T1.3 =High[pos];

T2.1=High[pos];
T2.2=Low[pos];
T2.3=Low[pos+1];
if you repeat this you should get a channel.
of course the High and Low values in your example also could be sma_high(pos+1) sma_low(pos) and so on.
 
zzueqq, I understand you too. Thanks!
But I can't do it in MQL4 because I havn't too much knowlege in coding.
If you can create the complete indicator, I will be hapy
:-)
 
Just an idea... if you look at the code for the Ichimoku indicator, you will see it uses draw_histogram to paint a cloud between two lines. Maybe that gives a place to start. Changing the span values with the SMA's thicken up the lines and it will fill your price line. I also found mucking about with existing code a great way to learn.
V
 
Viffer, thank you, I think about it, but I need the entire (solid) area
 
ARDI:
Viffer, thank you, I think about it, but I need the entire (solid) area

set the line style to solid, and thickness to 4 (or max) and it will completely fill the area with thw chosen colour.

Reason: