Forex



Go Back   Forex Trading > Downloads > Indicators - 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 09-19-2006, 09:16 PM
iGoR's Avatar
Senior Member
 
Join Date: Jan 2006
Posts: 1,564
iGoR is on a distinguished road
there is still a problem with the Hull MA

Hi,

At some point there was a problem with the Hull mA that it would repaint itself. Then I remember that Igorad had a look into this problem.
The Hull Ma that is revised by Igorad still has the problem of now and then repaiting itself.
As you can see on the image, there are 2 light blue arrows. When the bar of that arrow was CLOSED the color of the the HMA was also GREEN. In the 2 occasions the next bar is strong down bar. When these bars closed the color of the previous HMA turned back to red.
It is also clear to see with the naked eye that the slope of the HMA in the 2 occasions is pointing UP. But yet the color is red ?!...
So is there someone who could have an other look to this problem. I know it will not be easy to solve this problem because it happens only very few occasions.

TNX a lott in advance...
regards...iGoR
Attached Images
File Type: gif hull ma.gif (44.6 KB, 613 views)
Attached Files
File Type: mq4 HMA_Russian_Color.mq4 (4.0 KB, 68 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
  #2 (permalink)  
Old 09-19-2006, 11:12 PM
Member
 
Join Date: Dec 2005
Posts: 69
richx7 is on a distinguished road
Here is a single color Hull MA that doesn't repaint from my observations. Usually it is best to test painting on 1 min charts to see if past bars change. Only the last bar should be changing - when that bar is closed it should remain at that level.
Attached Files
File Type: mq4 HMA_No_Solid.mq4 (2.3 KB, 117 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
  #3 (permalink)  
Old 09-22-2006, 10:24 AM
iGoR's Avatar
Senior Member
 
Join Date: Jan 2006
Posts: 1,564
iGoR is on a distinguished road
Quote:
Originally Posted by richx7
Here is a single color Hull MA that doesn't repaint from my observations. Usually it is best to test painting on 1 min charts to see if past bars change. Only the last bar should be changing - when that bar is closed it should remain at that level.
Hi RichX,

There is something that i don't understand in your posting.
You say it does not repaint, but that indicator has only one color??...

The problem that I am faced with is the repainting in the color changing. As nicely expalined and showed by the image. Offcourse a single color indicator will not repaint its color because it only has 1 color.
So the indicator that you gave can not help with the problem of repainting its color.

Regards...iGoR
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 09-22-2006, 01:15 PM
alp alp is offline
Senior Member
 
Join Date: Nov 2005
Posts: 109
alp is an unknown quantity at this point
In my opinion the problem of colored MAs cannot be solved at all.
The reason lays in dynamic nature of the market and in the maths of moving average. New incoming values and old outcoming ones have huge discrepances which makes the MA curve quite unstable and repaints color.

It's clearly seen in Visual Mode of the MT 4 tester.
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 09-25-2006, 10:12 AM
iGoR's Avatar
Senior Member
 
Join Date: Jan 2006
Posts: 1,564
iGoR is on a distinguished road
I can not solve it because I'm a Metastock prgrammer.

But the problem is just a little programing fault. It has nothing to do with dynamic or not dynamic.
In the code that looks to the slope of the line there must be the fault. The direction of the line is ALWAYS correct. But in some occasions it gives the wrong color to the direction of the line.
Again I added 2 images were one can nicely see that the color changed of the HMA. I know it is only a visual color problem because if one looks to the direction of the slope that will NEVER change it is the color that changes occasionaly.
SO please could someone have a look to the code that looks to give color depending on direction of the slope of the HMA (up = yellow..down= magenta)

THNX A LOTT IN ADVANCE !!

regards...iGoR
Attached Images
File Type: gif yellow.gif (50.8 KB, 492 views)
File Type: jpg magenta.JPG (128.2 KB, 489 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
  #6 (permalink)  
Old 09-25-2006, 11:50 AM
igorad's Avatar
Senior Member
 
Join Date: Oct 2005
Location: Ukraine
Posts: 963
igorad is on a distinguished road
Hi,

Try to test indicator with different code of this line:

ExtMapBuffer[x] = iMAOnArray(vect, 0, p, 0, method, x);

or you can change to it:

ExtMapBuffer[x] = NormalizeDouble(iMAOnArray(vect, 0, p, 0, method, x),Digits);
or
ExtMapBuffer[x] = NormalizeDouble(iMAOnArray(vect, 0, p, 0, method, x),Digits+1);

Look on changes especially on small TF.

Igor
__________________
Let's improve trade skills together
http://finance.groups.yahoo.com/group/TrendLaboratory
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 09-29-2006, 12:18 AM
iGoR's Avatar
Senior Member
 
Join Date: Jan 2006
Posts: 1,564
iGoR is on a distinguished road
thanks for you help Igor but that does not solve the problem...
Could you have an other look at it plz...

regards...iGoR
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


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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Hull MA newdigital Indicators - Metatrader 4 91 09-17-2009 06:18 PM
Hull Moving Average TheWicker Indicators - Metatrader 4 12 05-15-2009 07:55 AM
HULL ma of adx .... hitman Indicators - Metatrader 4 10 06-22-2008 11:12 AM
Macd Hull beber Indicators - Metatrader 4 1 08-11-2007 02:09 AM
Hull Ma Outside E-a GUSDINSALVOFOREX Suggestions for Trading Systems 9 03-24-2007 07:00 PM


All times are GMT. The time now is 11:49 AM.



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