Indicators with alerts/signal - page 199

 

Multi Period Alert

Does any knows where I can find an indicator where I can put several same indicator on the same window with alert?

I'm looking at putting 3-4 WPR on the same window. Thanks in advance!!

1 WPR indicator with alert is attached but I need 3 to 4 in the same window to trigger an alert when all triggers are met. I can manually put 3 to 4 WPR on the same window but alert came individually (too many alert) when the first one hit, then another alert when the next one hit and so on.....

 

I really need this

Is it posible to add an alert sound on the in&out.mq4?

 

Need new indicator please!!

I need a new indicator. Pretty simple but very powerful. I had the ex4 of this indicator but I need a new one created since I never had the mq4

file.

Its pretty simple, but when I have it back, ie a new one here

I can share my trading system with it that is great! For me

it has been.

The indicator plots two MA's like the lines on a stochastic basically..

the ones I use is 9 MA and 45 MA. so basically just two lines

the pretty stable 45 MA and the 9 AM crossing above and below it.

In the indicator need to be able to select period, so like in fisher

indi and others the shorter period makes the indi more sensitive

ie period 5 instead of period 20.

And also select type of MA, SMA, EMA, SMMA, LWMA

for both the first and second MA, and be able to set

the MA's you want, again I use 9 and 45.

And then it would be great if you can turn on and off

an alert so when it crosses and closes either side

we can get an alert, pop up with alarm.

This is the core of my system, but the other filters

I use is what makes it a good system. I need this

indicator remade because again I only had the ex4 of

mine and with a new build of MT4 I need a mq4

from now on obviously.

Thanks anyone who can help!

Brian

 

Hello

Is it possible to make the MACD Colored indicator give an Alert/sound pop up when the macd crosses over the lines 15 and -15

Thanks

 

Sound-Alert into this Indicator possible ?

hi,

is it possible to get a sound alert in this indicator ? an alert is into it, but there is an bug i think... this doesnt alert....

i need a sound alert, if the rsi cross the 55 line from down to up and if the rsi cross the 45 line from top to bottom...

thank you

regards

clarc

 
benem:
Thanks to Orion7 to help me.2nd thing,during my long research i've find out in a italian forum this rar file contaning more then 1000 indicators.I hope this could help you guys.BY BY

Thank you benem

 

Can somebody add alert for this indicator? Much appreciated.

 

indicator repair

i need help with this indicator forex alert it is bringing up a alert every 5 to 10sec, i have unchecked enable alert on the ea but that does not stop it i then recheck it and checked disable alert once hit but that does not stop it,

also it is supposed to put a coloured dot when all conditions are met it does when its first attached to a chart then no more,it uses the adx indicator i hope somebody can help

please

#property indicator_chart_window

#property indicator_buffers 2

#property indicator_color1 Lime

#property indicator_color2 Red

//---- input parameters

extern int ADXbars=14;

extern int CountBars=1500;

//---- buffers

double val1[];

double val2[];

double b4plusdi,nowplusdi,b4minusdi,nowminusdi;

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

//| Custom indicator initialization function |

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

int init()

{

string short_name;

//---- indicator line

IndicatorBuffers(2);

SetIndexStyle(0,DRAW_ARROW);

SetIndexArrow(0,108);

SetIndexStyle(1,DRAW_ARROW);

SetIndexArrow(1,108);

SetIndexBuffer(0,val1);

SetIndexBuffer(1,val2);

//----

return(0);

}

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

//| AltrTrend_Signal_v2_2 |

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

int start()

{

if (CountBars>=Bars) CountBars=Bars;

SetIndexDrawBegin(0,Bars-CountBars);

SetIndexDrawBegin(1,Bars-CountBars);

int i,shift,counted_bars=IndicatorCounted();

//---- check for possible errors

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

//---- initial zero

if(counted_bars<1)

{

for(i=1;i<=CountBars;i++) val1[CountBars-i]=0.0;

for(i=1;i<=CountBars;i++) val2[CountBars-i]=0.0;

}

for (shift = CountBars; shift>=0; shift--)

{

b4plusdi=iADX(NULL,0,ADXbars,PRICE_CLOSE,MODE_PLUSDI,shift-1);

nowplusdi=iADX(NULL,0,ADXbars,PRICE_CLOSE,MODE_PLUSDI,shift);

b4minusdi=iADX(NULL,0,ADXbars,PRICE_CLOSE,MODE_MINUSDI,shift-1);

nowminusdi=iADX(NULL,0,ADXbars,PRICE_CLOSE,MODE_MINUSDI,shift);

if (b4plusdi>b4minusdi && nowplusdi<nowminusdi && i!=1)

{

val1[shift]=Low[shift]-5*Point;

Alert("Buy Signal","\n","Current time is ",TimeToStr(CurTime()),"\n",Symbol());

i++;

}

if (b4plusdinowminusdi && i!=1)

{

val2[shift]=High[shift]+5*Point;

Alert("Sell Signal","\n","Current time is ",TimeToStr(CurTime()),"\n",Symbol());

i++;

}

}

return(0);

}

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

 

this "system" is a bull..t - it just adx crosses indicator (plus bad - repainting one), that's all

get normal adx cross ind - many in this foum, make search

 

i know its a bad indicator and it repaints, but i like the concept and i though someone would help me to recode it

Reason: