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
  #11 (permalink)  
Old 02-13-2006, 01:05 AM
Member
 
Join Date: Dec 2005
Posts: 71
LazyForex is on a distinguished road
Quote:
Probably you found it here http://www.forex-tsd.com/8696-post71.html
I found it in another Forum actually...

So, anybody able to add codes to highlight the ADX when it hits 30?
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
  #12 (permalink)  
Old 02-13-2006, 02:15 AM
Member
 
Join Date: Dec 2005
Posts: 71
LazyForex is on a distinguished road
I got the TS code, I think. Can someone convert it?

Input: Length(14),NoTrnd(20),Trend(30),Ref(20);
Plot1(ADX(length),"ADX");
If Plot1 < Ref Then
SetPlotColor(1, Yellow)
Else If Plot1 >= Ref and Plot1 < Trend Then
SetPlotColor(1, magenta)
Else If Plot1 >= Trend Then
SetPlotColor(1, green);
Plot2(Ref,"Ref");
Plot3(ADXR(Length), "ADXR");

{ADX Alert Criteria}
If MRO(Plot1 < Plot1[1], 3, 1)[1] > -1 AND Plot1 < Plot1[1] Then
Alert("ADX has just turned down")
Else
If MRO(Plot1 > Plot1[1], 3, 1)[1] > -1 AND Plot1 > Plot1[1] Then
Alert("ADX has just turned up");
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
  #13 (permalink)  
Old 02-16-2006, 01:07 AM
Member
 
Join Date: Dec 2005
Posts: 71
LazyForex is on a distinguished road
Quote:
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
Thanks licho but it should stay RED above the level adjusted. appreciate the effort

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
  #14 (permalink)  
Old 02-16-2006, 09:36 AM
Junior Member
 
Join Date: Dec 2005
Posts: 10
licho is on a distinguished road
OK, try the attached file. The ADX keeps being RED all the time its value crosses the set level independing on the movment direction (THERE IS NO GREEN LINE). Please mind that as long as ADX line is above the set level there can be both falling or rising price movment. The direction you can determine watching +/-DI lines. Take care and good luck.
Attached Files
File Type: mq4 ADX_coloured_v1.mq4 (3.1 KB, 387 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
  #15 (permalink)  
Old 02-16-2006, 10:47 AM
Member
 
Join Date: Dec 2005
Posts: 71
LazyForex is on a distinguished road
Quote:
OK, try the attached file. The ADX keeps being RED all the time its value crosses the set level independing on the movment direction (THERE IS NO GREEN LINE). Please mind that as long as ADX line is above the set level there can be both falling or rising price movment. The direction you can determine watching +/-DI lines. Take care and good luck.
You have done it mate. Thanks a million
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
  #16 (permalink)  
Old 02-28-2006, 07:48 PM
Member
 
Join Date: Jan 2006
Posts: 51
blooms is on a distinguished road
Quote:
Originally Posted by licho
OK, try the attached file. The ADX keeps being RED all the time its value crosses the set level independing on the movment direction (THERE IS NO GREEN LINE). Please mind that as long as ADX line is above the set level there can be both falling or rising price movment. The direction you can determine watching +/-DI lines. Take care and good luck.
You curves don't look very juicy. And the +/-Di lines are not very useful at all. So I just modified your code. Here you go.
Attached Files
File Type: mq4 ADX_coloured_v2.mq4 (3.2 KB, 529 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
  #17 (permalink)  
Old 06-13-2008, 01:37 PM
Member
 
Join Date: Aug 2006
Location: Long Beach, Ca.
Posts: 53
f4mnect is on a distinguished road
ADX indicator help

I'm using the stock adx indicator that comes with mt4. But was wondering if it was possible to change the adx numbers in top left corner to a better visual and easier to use as a reference. Don't need any decimal places after the number, just bolder and easier to glance at. and if the size could be adjustable that would be great. I have added a doctored picture of what i'm talking about
Attached Images
File Type: jpg adxwishlistv1.jpg (20.7 KB, 1506 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
  #18 (permalink)  
Old 07-10-2008, 03:30 AM
Member
 
Join Date: May 2006
Posts: 36
traderandreas is on a distinguished road
Adxturn

Hi All,

The adxturn indicator when shows a red bar always indicates a big move as shown in the picture. Is there a mq4 equivalent of this indicator. At present it is one of bernie mitchells fear and greed indicator for ninja trader.

Any suggestions would be greatly appreciated.
Attached Images
File Type: jpg adxturn.JPG (39.9 KB, 1346 views)

Last edited by traderandreas; 07-10-2008 at 03:37 AM. Reason: wrong pic
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
  #19 (permalink)  
Old 07-10-2008, 06:21 AM
Administrator
 
Join Date: Sep 2005
Posts: 20,058
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
ADX histogram is on this page filters indicators (may be different from what you are looking for).

------------

Hull Style ADX v3 indicator with MA of ADX and individual period settings for ADX and PlusDi/MinusDi HULL ma of adx ....

------------

All ADX v1.0 indicators: the post http://www.forex-tsd.com/144645-post976.html
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
  #20 (permalink)  
Old 09-16-2008, 07:13 AM
Member
 
Join Date: Aug 2006
Location: Long Beach, Ca.
Posts: 53
f4mnect is on a distinguished road
ADX indicator help

I'm using a smoothed adx indicator and I also have a adx histogram indicator(But it's signal isn't smoothed) Can anybody take the adx histogram(mj_adxfilter_vbob) and match it's signals to the smoothed adx....Add the smoothing to it. Many Thanks if anybody can help me out
Attached Files
File Type: mq4 ADX SmoothedvBob.mq4 (3.8 KB, 190 views)
File Type: mq4 mj_ADXFilter_vBob.mq4 (3.4 KB, 183 views)
__________________
* The elevator to success is out of order. You'll have to use the stairs... one step at a time. *
* Never argue with the direction the market has chosen.*
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 02:13 PM.



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