Forex
Google

Go Back   Forex Trading > Discussion Areas > Metatrader 4
Forex Forum Register FAQ Members List Calendar Today's Posts


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

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 01-19-2006, 02:11 PM
LazyForex LazyForex is offline
Member
 
Join Date: Dec 2005
Posts: 49
LazyForex is on a distinguished road
ADX indicator?

Hi, Was wondering where I could get my hands on the ADX indicator with color changing when above a certain level..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 01-21-2006, 07:21 AM
Warren's Avatar
Warren Warren is offline
Junior Member
 
Join Date: Jan 2006
Posts: 7
Warren is on a distinguished road
Smile

Here is attached custom indicator - ADXbars! Maybe that helps!
Attached Files
File Type: mq4 ADXbars.mq4 (3.1 KB, 204 views)
__________________
Short Term Pain for Long Term Gain!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 01-21-2006, 12:52 PM
LazyForex LazyForex is offline
Member
 
Join Date: Dec 2005
Posts: 49
LazyForex is on a distinguished road
Not this one. I recall seeing somewhere in the Forum where the ADX turns from Red to Green when it goes above say 25 (adjustable). But thanks for the ADXBars. Looks interesting. How do you use it?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 01-21-2006, 01:18 PM
Warren's Avatar
Warren Warren is offline
Junior Member
 
Join Date: Jan 2006
Posts: 7
Warren is on a distinguished road
Actually I don't use it by myself. It seems that indicator change bar color when +DI cross -DI and vice versa.
__________________
Short Term Pain for Long Term Gain!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 02-09-2006, 10:34 PM
LazyForex LazyForex is offline
Member
 
Join Date: Dec 2005
Posts: 49
LazyForex is on a distinguished road
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)";
========================================
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 02-10-2006, 08:11 AM
newdigital newdigital is online now
Administrator
 
Join Date: Sep 2005
Posts: 15,164
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by LazyForex
Not this one. I recall seeing somewhere in the Forum where the ADX turns from Red to Green when it goes above say 25 (adjustable). But thanks for the ADXBars. Looks interesting. How do you use it?
I am not sure that it is what you need but I saw in the code the following:

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());
Attached Files
File Type: mq4 ADX Crossing_alarm.mq4 (2.8 KB, 143 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 02-10-2006, 10:56 AM
LazyForex LazyForex is offline
Member
 
Join Date: Dec 2005
Posts: 49
LazyForex is on a distinguished road
Quote:
I am not sure that it is what you need but I saw in the code the following:
Actually not. I was hoping someone can add a "change of color" when ADX crosses 20. See picture.


Larry
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 02-10-2006, 11:39 AM
licho licho is offline
Junior Member
 
Join Date: Dec 2005
Posts: 10
licho is on a distinguished road
Please try the attached file. Additionaly it changes colour RED/GREEN depending on the price direction. you can adjust the level of ADX value to be be coloured
Attached Files
File Type: mq4 ADX_coloured.mq4 (3.6 KB, 237 views)

Last edited by licho : 02-10-2006 at 11:48 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 02-10-2006, 11:40 AM
roher170 roher170 is offline
Junior Member
 
Join Date: Jan 2006
Posts: 3
roher170 is on a distinguished road
That is nice I would like that indicator also, hope someone can get it to work.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 02-10-2006, 12:16 PM
newdigital newdigital is online now
Administrator
 
Join Date: Sep 2005
Posts: 15,164
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by LazyForex
Actually not. I was hoping someone can add a "change of color" when ADX crosses 20. See picture.


Larry
Probably you found it here ADXcross
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump



All times are GMT. The time now is 12:36 PM.