Coding help - page 134

 

thank you "mladen"

 

Thanks a lot Mrtools for the Indicator ...

Its not attaching to my chart ... Can you plz post the ex4

God Bless you ...

 

Dear Coders

Is it possible to convert AbsoluteStrength indicator using Adaptive T3 ( or add Adaptive T3 as option = 4 in 'ModeMa in AbsoluteStrength' indicator ) ?

AbsoluteStrength is good old indicator while Adaptive T3 is latest one, so it might be more useful if someone made it like that!

Both indicator attached!

Thanks for any help

secretcode

 
secretcode:
Dear Coders

Is it possible to convert AbsoluteStrength indicator using Adaptive T3 ( or add Adaptive T3 as option = 4 in 'ModeMa in AbsoluteStrength' indicator ) ?

AbsoluteStrength is good old indicator while Adaptive T3 is latest one, so it might be more useful if someone made it like that!

Both indicator attached!

Thanks for any help

secretcode

secretcode

Here you go. When you set the ModeMA to to 4 the adaptive T3 is used for calculation (signal is calculated using adaptive T3 too)

 

please help me .....

i create indicator to show text in corner of chart

but not work

i want this indicator show me breakout candle

if close H1 (timeframe1) > high D1 (timeframe2) = up // break high daily

if close H1 (timeframe1) < low D1 (timeframe2) = down // break low daily

thanks ...

string name;

double H1 = iClose(NULL,timeframe1,0);

double D1H = High;

double D1L = Low;

if(H1>D1H)

{

name = "up";

}

if(H1<D1L)

{

name = "down";

}

ObjectCreate("signal",OBJ_LABEL,0,0,0,0,0);

ObjectCreate("signal2",OBJ_LABEL,0,0,0,0,0);

ObjectSet("signal",OBJPROP_XDISTANCE,3);

ObjectSet("signal2",OBJPROP_XDISTANCE,59);

ObjectSet("signal",OBJPROP_YDISTANCE,12);

ObjectSet("signal2",OBJPROP_YDISTANCE,12);

ObjectSetText("signal",name,12,"Tahoma",Red);

 
rpasupathy:
Thanks a lot Mrtools for the Indicator ...

Its not attaching to my chart ... Can you plz post the ex4

God Bless you ...

Rpasupathy, here is the ex4.

 
mladen:
secretcode Here you go. When you set the ModeMA to to 4 the adaptive T3 is used for calculation (signal is calculated using adaptive T3 too)

Thank you so much Mladen for your nice work Much appreciated

Respectfully

secretcode

 
rizkyd:
please help me .....

i create indicator to show text in corner of chart

but not work

i want this indicator show me breakout candle

if close H1 (timeframe1) > high D1 (timeframe2) = up // break high daily

if close H1 (timeframe1) < low D1 (timeframe2) = down // break low daily

thanks ...

string name;

double H1 = iClose(NULL,timeframe1,0);

double D1H = High;

double D1L = Low;

if(H1>D1H)

{

name = "up";

}

if(H1<D1L)

{

name = "down";

}

ObjectCreate("signal",OBJ_LABEL,0,0,0,0,0);

ObjectCreate("signal2",OBJ_LABEL,0,0,0,0,0);

ObjectSet("signal",OBJPROP_XDISTANCE,3);

ObjectSet("signal2",OBJPROP_XDISTANCE,59);

ObjectSet("signal",OBJPROP_YDISTANCE,12);

ObjectSet("signal2",OBJPROP_YDISTANCE,12);

ObjectSetText("signal",name,12,"Tahoma",Red);

Try something like this :

string name1="";

string name2="";

color color1;

color color2;

double H1 = iClose(NULL,timeframe1,0);

double D1H = iHigh(NULL,timeframe2,1);

double D1L = iLow(NULL,timeframe2,1);

if(H1>D1H)

{

name1 = "up"; color1 = Blue;

}

if(H1<D1L)

{

name1 = "down"; color1 = Red;

}

ObjectCreate("signal",OBJ_LABEL,0,0,0,0,0);

ObjectSet("signal",OBJPROP_XDISTANCE,3);

ObjectSet("signal",OBJPROP_YDISTANCE,12);

ObjectSetText("signal",name1,12,"Tahoma",color1);

ObjectCreate("signal2",OBJ_LABEL,0,0,0,0,0);

ObjectSet("signal2",OBJPROP_XDISTANCE,59);

ObjectSet("signal2",OBJPROP_YDISTANCE,12);

ObjectSetText("signal2",name2,12,"Tahoma",color2);

 

Dear mladen

I would like to know if you have any document about math behind Tim Morris MA.

It is a bit difficult to grab math from your smart codes.

Best,

 
-IXI-:
Dear mladen

I would like to know if you have any document about math behind Tim Morris MA.

It is a bit difficult to grab math from your smart codes.

Best,

Maybe best to check the code of the indicator posted at this post : https://www.mql5.com/en/forum/173235 - it has commented parts that might help in understanding what is done

Reason: