Indicators with alerts/signal - page 356

 
mladen:
For "color detection" you can use this indicator. It is a simple indicator that is showing 2 values : +1 when heiken ashi trend is up and -1 when heiken ashi trend is down. Here is how it compared to the original heiken ashi indicator (in the main chart) :
This way, in the EA it is easy to enter positions since you already have a "trend" of the heiken ashi.

Thanks mladen . Can you make it with sound?

 

...

Alerts added (the whole enchilada )

regards

clon_tron:
Thanks mladen . Can you make it with sound?
 
mladen:
Alerts added (the whole enchilada ) regards

Thank you mladen!

 

How to add Text

Hello mladen,

how i can add text BUY or SELL near buy&sell arrow symbol

ThanX in Adv.

Files:
text_needed.png  29 kb
 

...

Without the indicator I can give only a general answer.

You could, for example, use a procedure like this :
void SetComment(double price, datetime time, string text,color theColor)

{

string name = "comment"+time;

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

ObjectSet(name,OBJPROP_PRICE1,price);

ObjectSet(name,OBJPROP_COLOR,theColor);

ObjectSet(name,OBJPROP_TIME1,time);

ObjectSetText(name,text,12,"Arial bold");

}

Also, you would need to organize objects deletion (clean-up) too

hope this helps

vegadigitalco:
Hello mladen,

how i can add text BUY or SELL near buy&sell arrow symbol

ThanX in Adv.
 

text BUY or SELL

I need text BUY or SELLto similar indicator near x Arrow (Red x Sell & Yellow x Buy text)

https://www.mql5.com/en/forum/180648/page235

ThanX in Adv

 

...

Are you sure you need it for that indicator? Because with default parameters it looks like this if text is displayed when a peak happens :

Attaching it, but I don't think that it can be used on peaks as that indicator is doing it (not just for the great number of alerts, but also becase that indicator shows peaks 2 bars back - it repaints)

vegadigitalco:
I need text BUY or SELLto similar indicator near x Arrow (Red x Sell & Yellow x Buy text)

https://www.mql5.com/en/forum/180648/page235

ThanX in Adv
 

Similar indicator with arrows- no repainting:

Files:
picy.png  44 kb
 

...........

 
biddick:
Similar indicator with arrows- no repainting:

One more!!!

Files:
rsi.gif  21 kb
Reason: