Hello!
I hope this is not a spam and it is allowed.
If anyone need any kind of indicator I can code it. Alerts, crosses,...
Same for EAs.
Hello!
I hope this is not a spam and it is allowed.
If anyone need any kind of indicator I can code it. Alerts, crosses,...
Same for EAs.
Could you program an ea that gives buy or sell or no action for the adx, dmi and add conformation of signals with RSI moving in direction of trend indicated by the adx, dmi signals. When no adx signals use bolinger to give buy and sell signals at the band edges or reverses inside the band. use ADX/Di+/DI- and Stoch on the M1 Charts, with cavemanger 1.41 to manage the trade once it is placed.
Hi Kovactrader,
please can you add an alert ( pop-up and sound ) for the attached indi?
The color change must be confirmed!
Thanks
j_l
not so difficult:
extern bool AlertON=false;
extern bool EmailON=false;
extern bool SoundON=false;
extern bool VoiceON=false;
extern bool SMSON=false;
extern string ExtSoundFileName = "";//external soundfiles required, than delete
at the end: MA example
FastMA[i] = fastMAnow;
SlowMA[i] = slowMAnow;
if ((fastMAnow >= slowMAnow) && (fastMAprevious < slowMAprevious))
{
if (i == 1 && flagval1==0)
{
flagval1=1;
flagval2=0;
if (AlertON==true) Alert("BUY signal at Ask=",Ask,"\n Bid=",Bid,"\n Time=",TimeToStr(CurTime(),TIME_DATE)," ",TimeHour(CurTime()),":",TimeMinute(CurTime()),"\ n Symbol=",Symbol()," Period=",Period());
if (EmailON==true) SendMail("BUY","BUY signal at Ask="+DoubleToStr(Ask,4)+", Bid="+DoubleToStr(Bid,4)+", Date="+TimeToStr(CurTime(),TIME_DATE)+" "+TimeHour(CurTime())+":"+TimeMinute(CurTime() )+" Symbol="+Symbol()+" Period="+Period());
if (SMSON==true) SendMail("BUY","BUY signal at Ask="+DoubleToStr(Ask,4)+", Bid="+DoubleToStr(Bid,4)+", Date="+TimeToStr(CurTime(),TIME_DATE)+" "+TimeHour(CurTime())+":"+TimeMinute(CurTime() )+" Symbol="+Symbol()+" Period="+Period());
if (SoundON==true) PlaySound(ExtSoundFileName);//peep etc
if (VoiceON==true) PlaySound(ExtSoundFileName);// own speech wav
}
CrossUp[i] = Low[i] - Range*0.5;
}
else if ((fastMAnow <= slowMAnow) && (fastMAprevious > slowMAprevious))
{
if (i == 1 && flagval2==0)
{
flagval2=1;
flagval1=0;
if (AlertON==true) Alert("SELL signal at Ask=",Ask,"\n Bid=",Bid,"\n Date=",TimeToStr(CurTime(),TIME_DATE)," ",TimeHour(CurTime()),":",TimeMinute(CurTime()),"\ n Symbol=",Symbol()," Period=",Period());
if (EmailON==true) SendMail("SELL","SELL signal at Ask="+DoubleToStr(Ask,4)+", Bid="+DoubleToStr(Bid,4)+", Date="+TimeToStr(CurTime(),TIME_DATE)+" "+TimeHour(CurTime())+":"+TimeMinute(CurTime() )+" Symbol="+Symbol()+" Period="+Period());
if (SMSON==true) SendMail("SELL","SELL signal at Ask="+DoubleToStr(Ask,4)+", Bid="+DoubleToStr(Bid,4)+", Date="+TimeToStr(CurTime(),TIME_DATE)+" "+TimeHour(CurTime())+":"+TimeMinute(CurTime() )+" Symbol="+Symbol()+" Period="+Period());
if (SoundON==true) PlaySound(ExtSoundFileName);//peeps etc
if (VoiceON==true) PlaySound(ExtSoundFileName);// own speech wav
}
CrossDown[i] = High[i] + Range*0.5;
}
}
try it, its really easy
IX
Last edited by ixbone; 11-05-2010 at 14:29.
IXBONE
Forex VPS, IX Trader Forex Software
Business Internet Services
Registered Internet Service Provider (Ripe: AS 16195)
[QUOTE=ixbone;37580]not so difficult:
Toll Michael,
der Coder verlangt 20 EURO.
Gruß
j_l
IXBONE
Forex VPS, IX Trader Forex Software
Business Internet Services
Registered Internet Service Provider (Ripe: AS 16195)
Indicators and EAs.
Hi and thank you for your generous offer to code. I have simple request, I think. MT4 has an indicator called OSMA. Can you turn it into an EA and add an alert for when it crosses the zero line? Also, is it possible to make the alert send email or text in addition to sound? I am new to MT4 and will greatly appreciate any help you can provide. Thank you!
Mike