|
|||||||
| Register in Forex TSD! | |
|
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time). Click here to register and get more information |
|
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
I found some codes for the ADX function and would appreciate if anyone here can add this for MT4's ADX
Thanks ======================================== //ADX CODE ADXcolor= IIf(ADX(14)>=20,colorLime,colorRed); Plot(ADX(14),"ADX(14)",ADXcolor,styleLine,styleNoT itle); Plot(30,"",colorBlue,styleLine); Title="ADX(14)"; ======================================== |
|
|||
|
Quote:
Code:
val1[shift]=Low[shift]-5*Point;
if (UseSound==1) PlaySound(NameFileSound);
if (TypeChart==1) Comment ("Buy signal at Ask=",Ask,", Bid=",Bid,", Date=",TimeToStr(CurTime(),TIME_DATE)," ",TimeHour(CurTime()),":",TimeMinute(CurTime())," Symbol=",Symbol()," Period=",Period());
Code:
val2[shift]=High[shift]+5*Point;
if (UseSound==1) PlaySound(NameFileSound);
if (TypeChart==1) Comment ("Sell signal at Ask=",Ask,", Bid=",Bid,", Date=",TimeToStr(CurTime(),TIME_DATE)," ",TimeHour(CurTime()),":",TimeMinute(CurTime())," Symbol=",Symbol()," Period=",Period());
|