MA Candles - page 6

 
FHS:
Hi everyone Someone can explain why my chart is not colored in candles?

I think because you have to set unchecked that field like in the pic. (in english it is something like "chart on foreground")

then you have to make sure that the width of your indicator candles is enough for "cover" the standard candlestick candles or just switch from candlestick chart to barchart...

Files:
cattura_1.jpg  44 kb
 
thefxpros:
I think because you have to set unchecked that field like in the pic. (in english it is something like "chart on foreground")

then you have to make sure that the width of your indicator candles is enough for "cover" the standard candlestick candles or just switch from candlestick chart to barchart...

I marked this option and has not improved

 
FHS:
I marked this option and has not improved

Please read better my post.

 
thefxpros:
Please read better my post.

ok. but it's still not candle color is color bar

Files:
audusdm15_2.png  64 kb
 
FHS:
ok. but it's still not candle color is color bar

There is no candle style of drawing in metatrader 4

In cases like the one you have (when you have candle chart) set the colors 3 and 4 to larger values to cover the body of the candle

 

ok . thanks.

 

Why don't they allow that type of drawing in mt4 when they are making them work almostt the same?

 

is anyone here can guide me?

int start()

{

int counted_bars=IndicatorCounted();

int i,limit;

limit=Bars-counted_bars;

if(counted_bars<0) return(-1);

if(counted_bars>0) counted_bars--;

if(counted_bars==0) limit-=1+1;

//

//

//

//

//

for(i=limit; i>=0; i--)

{

double price=iMA(NULL,0,1,0,MODE_SMMA,SmmaPrice,i);

diff = iTma(price,FastSmma,i,0) - iTma(price,SlowSmma,i,1);

trend = trend;

slope = slope;

if(diff > 0) trend = 1;

if(diff < 0) trend = -1;

if(diff > diff) slope = 1;

if(diff < diff) slope = -1;

if(trend== 1) subSetAbove = diff;

if(trend==-1) subSetBelow = diff;

if(slope== 1) subSetUp = diff;

if(slope==-1) subSetDn = diff;

SetUpAbove = ((subSetAbove ==1) && (subSetUp==1));

SetDnBelow = ((subSetBelow ==-1) && (subSetDn==-1));

SetDnAbove = ((subSetAbove ==1) && (subSetDn==-1));

SetUpBelow = ((subSetBelow ==-1) && (subSetUp==1));

Files:
 
ryzalrich:
anyone can guide me?

int start()

{

int counted_bars=IndicatorCounted();

int i,limit;

limit=Bars-counted_bars;

if(counted_bars<0) return(-1);

if(counted_bars>0) counted_bars--;

if(counted_bars==0) limit-=1+1;

//

//

//

//

//

for(i=limit; i>=0; i--)

{

double price=iMA(NULL,0,1,0,MODE_SMMA,SmmaPrice,i);

diff = iTma(price,FastSmma,i,0) - iTma(price,SlowSmma,i,1);

trend = trend;

slope = slope;

if(diff > 0) trend = 1;

if(diff < 0) trend = -1;

if(diff > diff) slope = 1;

if(diff < diff) slope = -1;

if(trend== 1) subSetAbove = diff;

if(trend==-1) subSetBelow = diff;

if(slope== 1) subSetUp = diff;

if(slope==-1) subSetDn = diff;

SetUpAbove = ((subSetAbove ==1) && (subSetUp==1));

SetDnBelow = ((subSetBelow ==-1) && (subSetDn==-1));

SetDnAbove = ((subSetAbove ==1) && (subSetDn==-1));

SetUpBelow = ((subSetBelow ==-1) && (subSetUp==1));

Do it like this :

SetUpAbove = ((subSetAbove ==1) && (subSetUp==1));

SetDnBelow = ((subSetBelow ==-1) && (subSetDn==-1));

SetDnAbove = ((subSetAbove ==1) && (subSetDn==-1));

SetUpBelow = ((subSetBelow ==-1) && (subSetUp==1));
 

Does anyone have the averages channel candle (grab candle) i just want 4 standart ma with i can setting the period ma and type ma with alerts ??? Everything standart no mtf just plus alerts

 

Thanks in advance 

Reason: