Forex



Go Back   Forex Trading > Discussion Areas > Metatrader 4
Forex Forum Register More recent Blogs Calendar Advertising Others Help






Register
Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.

From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.

Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
  • Elite Section
    Get access to private discussions, specialized support, indicators and trading systems reported every week.
  • Advanced Elite Section
    For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
See more

Reply
 
Thread Tools Display Modes
  #1 (permalink)  
Old 01-19-2006, 03:11 PM
Member
 
Join Date: Dec 2005
Posts: 71
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #2 (permalink)  
Old 01-21-2006, 08:21 AM
Warren's Avatar
Junior Member
 
Join Date: Jan 2006
Posts: 9
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, 589 views)
__________________
Short Term Pain for Long Term Gain!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #3 (permalink)  
Old 01-21-2006, 01:52 PM
Member
 
Join Date: Dec 2005
Posts: 71
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #4 (permalink)  
Old 01-21-2006, 02:18 PM
Warren's Avatar
Junior Member
 
Join Date: Jan 2006
Posts: 9
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #5 (permalink)  
Old 02-09-2006, 11:34 PM
Member
 
Join Date: Dec 2005
Posts: 71
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #6 (permalink)  
Old 02-10-2006, 09:11 AM
Administrator
 
Join Date: Sep 2005
Posts: 20,052
Blog Entries: 241
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, 370 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #7 (permalink)  
Old 02-10-2006, 11:56 AM
Member
 
Join Date: Dec 2005
Posts: 71
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

Last edited by newdigital; 07-10-2008 at 06:10 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #8 (permalink)  
Old 02-10-2006, 12:39 PM
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, 643 views)

Last edited by licho; 02-10-2006 at 12:48 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #9 (permalink)  
Old 02-10-2006, 12:40 PM
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #10 (permalink)  
Old 02-10-2006, 01:16 PM
Administrator
 
Join Date: Sep 2005
Posts: 20,052
Blog Entries: 241
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 http://www.forex-tsd.com/8696-post71.html

Last edited by newdigital; 07-10-2008 at 06:11 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks

Tags
Advanced ADX Indicator, ADX Alert, adx bar, ADX histogram, adx indicator, adx indicator forex, adx indicator mq4, ADX_coloured


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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

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


All times are GMT. The time now is 01:13 PM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.