Crossover alert needed!!

 

hii forum..

i need a crossover alert for the following moving averages..

the parameters are:

MA1 : PERIOD=5; SHIFT=1; MA METHOD= SIMPLE; APPLY TO = CLOSE

MA1 : PERIOD=3; SHIFT=0; MA METHOD= SIMPLE; APPLY TO = CLOSE

PLEASE CREATE A SOUND ALERT AND A CROSSOVER ARROW WHEN THESE TWO MOVING AVERAGES CROSS..

THANKYOU.

REGARDS,

SURESH

 
suresh3101:
hii forum.. i need a crossover alert for the following moving averages.. the parameters are: MA1 : PERIOD=5; SHIFT=1; MA METHOD= SIMPLE; APPLY TO = CLOSE MA1 : PERIOD=3; SHIFT=0; MA METHOD= SIMPLE; APPLY TO = CLOSE PLEASE CREATE A SOUND ALERT AND A CROSSOVER ARROW WHEN THESE TWO MOVING AVERAGES CROSS.. THANKYOU. REGARDS, SURESH

this is from my platform metatrader library.

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

//| 18_28Cross.mq4 |
//| Copyright © 2006, MetaQuotes Software Corp. |
//| MetaTrader 5 Trading Platform / MetaQuotes Software Corp. |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2006, MetaQuotes Software Corp."
#property link "MetaTrader 5 Trading Platform / MetaQuotes Software Corp."
//----
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Blue
#property indicator_color2 Red
//----
double CrossUp[];
double CrossDown[];
extern int FasterMode=1; //0=sma, 1=ema, 2=smma, 3=lwma
extern int FasterMA =18;
extern int SlowerMode=1; //0=sma, 1=ema, 2=smma, 3=lwma
extern int SlowerMA =28;
extern int SoundAlert=1; // 0 = disabled
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
SetIndexStyle(0, DRAW_ARROW, EMPTY);
SetIndexArrow(0, 233);
SetIndexBuffer(0, CrossUp);
SetIndexStyle(1, DRAW_ARROW, EMPTY);
SetIndexArrow(1, 234);
SetIndexBuffer(1, CrossDown);
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int limit, i, counter;
double fasterMAnow, slowerMAnow, fasterMAprevious, slowerMAprevious, fasterMAafter, slowerMAafter;
double Range, AvgRange;
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--;
//----
limit=Bars-counted_bars;
for(i=0; i<=limit; i++)
{
counter=i;
Range=0;
AvgRange=0;
for(counter=i ;counter<=i+9;counter++)
{
AvgRange=AvgRange+MathAbs(High[counter]-Low[counter]);
}
Range=AvgRange/10;
fasterMAnow=iMA(NULL, 0, FasterMA, 0, FasterMode, PRICE_CLOSE, i);
fasterMAprevious=iMA(NULL, 0, FasterMA, 0, FasterMode, PRICE_CLOSE, i+1);
fasterMAafter=iMA(NULL, 0, FasterMA, 0, FasterMode, PRICE_CLOSE, i-1);
slowerMAnow=iMA(NULL, 0, SlowerMA, 0, SlowerMode, PRICE_CLOSE, i);
slowerMAprevious=iMA(NULL, 0, SlowerMA, 0, SlowerMode, PRICE_CLOSE, i+1);
slowerMAafter=iMA(NULL, 0, SlowerMA, 0, SlowerMode, PRICE_CLOSE, i-1);
//----
if ((fasterMAnow > slowerMAnow) && (fasterMAprevious slowerMAafter))
{
CrossUp=Low - Range*0.5 ;
}
else if ((fasterMAnow slowerMAprevious) && (fasterMAafter < slowerMAafter))
{
CrossDown=High + Range*0.5;
}
}
//----
return(0);
}
//+----------------------

 
suresh3101:
hii forum.. i need a crossover alert for the following moving averages..the parameters are: MA1 : PERIOD=5; SHIFT=1; MA METHOD= SIMPLE; APPLY TO = CLOSEMA1 : PERIOD=3; SHIFT=0; MA METHOD= SIMPLE; APPLY TO = CLOSE PLEASE CREATE A SOUND ALERT AND A CROSSOVER ARROW WHEN THESE TWO MOVING AVERAGES CROSS..THANKYOU.REGARDS,SURESH

i placed a code here yesterday i found in my broker's metatrader library but when i log in to the forum it keeps saying i havent posted before--can the moderator resolve this and post the indicator please.

 
suresh3101:
hii forum..i need a crossover alert for the following moving averages..the parameters are:MA1 : PERIOD=5; SHIFT=1; MA METHOD= SIMPLE; APPLY TO = CLOSEMA1 : PERIOD=3; SHIFT=0; MA METHOD= SIMPLE; APPLY TO = CLOSEPLEASE CREATE A SOUND ALERT AND A CROSSOVER ARROW WHEN THESE TWO MOVING AVERAGES CROSS..THANKYOU.REGARDS,SURESH

Check PM.

 

Hi coder/programmer,

Any coder/programmer can help to create EA from this MA shift crossover,

when the crossover happen above/below a certain MA?

I already have the MA shift crossover MQ4 file, possible?

thanks.

Kovactrader:
Check PM.
Reason: