Indicators with alerts/signal - page 3

 

hello,

does anybody know an indicator for mt4, which gives alert, if a pricelevel of a forexpair is reached?

thx!

 

Hi all

Can anybody create a "LSMA in Color" indicator which will play a alertsound at the changing the color?

 

ASCTrend with sound Alert

opps no more need for it

 

Fractal indicator alert

Is there anywhere the fractal indicator alert?

 
forextrend:
opps no more need for it

It should be here and here.

 

JMA Cross

Hi All

Does any know of a JMA cross alert, or can anyone modify a EMA cross alert to a JMA cross alert for me. The alert below works well but not knowing anything about programing I can't change the EMA to JMA (simply replacing the ema with jma does not work). The one below alerts once on cross, I would like it to alert five times before it stops.

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

//| CrossedAlerts.mq4 |

//| Coders Guru |

//| https://www.mql5.com/en/forum |

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

#property copyright "Coders Guru"

#property link "https://www.forex-tsd.com"

#property indicator_chart_window

#property indicator_buffers 2

#property indicator_color1 Lime

#property indicator_color2 Aqua

//---- buffers

double ExtMapBuffer1[];

double ExtMapBuffer2[];

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

//| Custom indicator initialization function |

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

int init()

{

//---- indicators

SetIndexStyle(0,DRAW_LINE);

SetIndexBuffer(0,ExtMapBuffer1);

SetIndexStyle(1,DRAW_LINE);

SetIndexBuffer(1,ExtMapBuffer2);

//----

return(0);

}

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

//| Custor indicator deinitialization function |

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

int deinit()

{

//----

//----

return(0);

}

bool Crossed (double line1 , double line2 )

{

static string last_direction = "";

string current_dirction = "";

if(line1>line2)current_dirction = "up";

if(line1<=line2)current_dirction = "down";

if(current_dirction != last_direction)

{

Alert("EMA Cross for "+Symbol()+" on the "+Period()+" minute chart.");

last_direction = current_dirction;

return (true);

}

else

{

return (false);

}

}

int start()

{

int counted_bars=IndicatorCounted();

//---- check for possible errors

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

//---- last counted bar will be recounted

if (counted_bars>0) counted_bars--;

int pos=Bars-counted_bars;

while(pos>=0)

{

ExtMapBuffer1[pos]= iMA(NULL,0,5,0,MODE_EMA,PRICE_CLOSE,pos);

ExtMapBuffer2[pos]= iMA(NULL,0,7,0,MODE_EMA,PRICE_CLOSE,pos);

pos--;

}

Print(Crossed (ExtMapBuffer1[0],ExtMapBuffer2[0]));

//----

return(0);

}

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

Have a great Day Mark

 

Alert for BB

Have someone an idea how to create an alert for the bollinger bands indicator? I need an alert when the price hits the channel an when it hits the ma.

thank you all

 
 

Sound Alert Help

Does anybody know how to modify the alerts of the indicators below so that the alert will keep sounding until a dialog box is click. This would be very useful especially with 2CCI Zero Cross Alert. Thanks.

2CCI_ZeroCross_Alert.mq4

EMA-Crossover_Signal.mq4

LWMA-Crossover_Signal.mq4

SMA-Crossover_Signal.mq4

SMMA-Crossover_Signal.mq4

 

ASCTrend expert advisor development

newdigital:
The other indicators with alert/signal.

Can a charitable programmer alter the ASCTrend alerts so that it places a trade at the alert? Please post the completed program in expert advisor version 4 section of this forum.

Reason: