Indicators with alerts/signal - page 1064

 
Spainguy74:
hi mr. tool or madlen,

i need alert email and message popup too.. i give you 2 files

thank

Hi Spainguy74, the ASCTrend_BO there is an indicator here: https://www.mql5.com/en/forum/173574/page522 that is the same, on the other one can't do anything with an ex4 file.

 
mrtools:
Hi Zefx, added the alerts on current option.

Hi Mrtools,

could you check this 6.03 version, I'm not getting any alert on current, whether true or false. V6.02 is working fine.

123patternsv6.03_amp_mtf_nmc.mq4

123patternsv6.02_amp_mtf_nmc.mq4

There should be two of them in the attached image, one in 8:59(6:59), other in 9:18(7:18). Server time is GMT, mine +2.

 
mladen:
ValeoFX One version of multi pair DTOSC (Dynamic Trader Oscillator) posted here : https://www.mql5.com/en/forum/178416/page30

You are such a star, Mladen.

Thank you so much.

Blessings.

 
zefx:
Hi Mrtools,

could you check this 6.03 version, I'm not getting any alert on current, whether true or false. V6.02 is working fine.

123patternsv6.03_amp_mtf_nmc.mq4

123patternsv6.02_amp_mtf_nmc.mq4

There should be two of them in the attached image, one in 8:59(6:59), other in 9:18(7:18). Server time is GMT, mine +2.

zefx

Try it out now : 123patternsv6.03_amp_mtf_nmc_1.mq4

 

hi mladen and experts

i saw the magnified market price indicator showing display of current close price on chart right side top corner.

I would like to add following

--------------------------

Close Price

ATR(14)= (display value on current time frame)

SMA50=

Volume change= (V-MA(V,14))/V

+DI=

-DI=

DELTA DI=DI-(-DI)

---------------------

please do the needful

Knowing these values on current tf chart is an advantage

thanks

 

Hi can some one set this code taken from waddah attar Indicator in such a way that the text is displayed next to price

void SetPrice(string name, datetime Tm, double Prc, color clr)

{

if(ObjectFind(name) == -1)

{

ObjectCreate(name, OBJ_ARROW, 0, Tm, Prc);

ObjectSet(name, OBJPROP_COLOR, clr);

ObjectSet(name, OBJPROP_WIDTH, 1);

ObjectSet(name, OBJPROP_ARROWCODE, SYMBOL_RIGHTPRICE);

}

else

{

ObjectSet(name, OBJPROP_TIME1, Tm);

ObjectSet(name, OBJPROP_PRICE1, Prc);

ObjectSet(name, OBJPROP_COLOR, clr);

ObjectSet(name, OBJPROP_WIDTH, 1);

ObjectSet(name, OBJPROP_ARROWCODE, SYMBOL_RIGHTPRICE);

}

}

//+------------------------------------------------------------------+

//| |

//+------------------------------------------------------------------+

void SetText(string name, string txt, datetime Tm, double Prc, color clr)

{

if(ObjectFind(name) == -1)

{

ObjectCreate(name, OBJ_TEXT, 0, Tm, Prc);

ObjectSetText(name, txt, 10, "Times New Roman", clr);

ObjectSet(name, OBJPROP_CORNER, 2);

}

else

{

ObjectSet(name, OBJPROP_TIME1, Tm);

ObjectSet(name, OBJPROP_PRICE1, Prc);

ObjectSetText(name, txt, 10, "Times New Roman", clr);

ObjectSet(name, OBJPROP_CORNER, 2);

}

}

Thanks & Regards

Privateer

 
privateer:
Hi can some one set this code taken from waddah attar Indicator in such a way that the text is displayed next to price

void SetPrice(string name, datetime Tm, double Prc, color clr)

{

if(ObjectFind(name) == -1)

{

ObjectCreate(name, OBJ_ARROW, 0, Tm, Prc);

ObjectSet(name, OBJPROP_COLOR, clr);

ObjectSet(name, OBJPROP_WIDTH, 1);

ObjectSet(name, OBJPROP_ARROWCODE, SYMBOL_RIGHTPRICE);

}

else

{

ObjectSet(name, OBJPROP_TIME1, Tm);

ObjectSet(name, OBJPROP_PRICE1, Prc);

ObjectSet(name, OBJPROP_COLOR, clr);

ObjectSet(name, OBJPROP_WIDTH, 1);

ObjectSet(name, OBJPROP_ARROWCODE, SYMBOL_RIGHTPRICE);

}

}

//+------------------------------------------------------------------+

//| |

//+------------------------------------------------------------------+

void SetText(string name, string txt, datetime Tm, double Prc, color clr)

{

if(ObjectFind(name) == -1)

{

ObjectCreate(name, OBJ_TEXT, 0, Tm, Prc);

ObjectSetText(name, txt, 10, "Times New Roman", clr);

ObjectSet(name, OBJPROP_CORNER, 2);

}

else

{

ObjectSet(name, OBJPROP_TIME1, Tm);

ObjectSet(name, OBJPROP_PRICE1, Prc);

ObjectSetText(name, txt, 10, "Times New Roman", clr);

ObjectSet(name, OBJPROP_CORNER, 2);

}

}

Thanks & Regards

Privateer

Yous prove the correct price in the Prc parameter when you call those two functions

 

waddah_attar_pivot.mq4 mladen am still in the learning stages of understanding the mql ,, could be kind enough to modify the code so text is displayed right next to the price ..waddah attar indicator is attached.....

Thanks & Regards

Privateer

Files:
 
privateer:
waddah_attar_pivot.mq4 mladen am still in the learning stages of understanding the mql ,, could be kind enough to modify the code so text is displayed right next to the price ..waddah attar indicator is attached.....

Thanks & Regards

Privateer

It is displayed next t the price

What you are seeing is the what metatrader does with the text - add some constant to the time parameter (for example 20*_Period*60) and it will move the text to the right, but even then it will not be perfect due toi the way how metatrader display text

 

Thanks mladen now i perfectly understand wht ur saying

mladen:
It is displayed next t the price What you are seeing is the what metatrader does with the text - add some constant to the time parameter (for example 20*_Period*60) and it will move the text to the right, but even then it will not be perfect due toi the way how metatrader display text
Reason: