Forex
Google
New signals service!

Go Back   Forex Trading > Downloads > Indicators - Metatrader 4


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 (1) Thread Tools Display Modes
  #21 (permalink)  
Old 10-16-2006, 10:56 AM
FXSamurai's Avatar
Member
 
Join Date: Aug 2006
Posts: 31
FXSamurai is on a distinguished road
Now I see you've also made a "MTF" version. I guess that is a "multiple time frame" version?

When I try to use it, it first momentarily freezes all functionality, and after that it doesn't show anything on my charts. I tried timeframe 0 and 1, on 15m, 30m, 1h, and 1 day chart.

Am I doing something wrong?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #22 (permalink)  
Old 10-16-2006, 11:18 AM
FXSamurai's Avatar
Member
 
Join Date: Aug 2006
Posts: 31
FXSamurai is on a distinguished road
Errr.... or is the MTF version something to be used for the "BrainSystem"? I'm not very familiar with it... So sorry if my question seems dumb...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #23 (permalink)  
Old 10-16-2006, 01:03 PM
igorad's Avatar
Senior Member
 
Join Date: Oct 2005
Location: Ukraine
Posts: 813
igorad is on a distinguished road
ChannelType is a size of fractal (1 - 3 bars, 2-5bars,3-7 bars and so on)
For correct work of MTF version you should have FractalChannel_v4 (it's correct name) in indicators folder also.
This indicator have not nothing common with TD lines, levels...
__________________
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!
Reply With Quote
  #24 (permalink)  
Old 10-21-2006, 09:02 AM
FXSamurai's Avatar
Member
 
Join Date: Aug 2006
Posts: 31
FXSamurai is on a distinguished road
OK, I needed some time to check the MTF fractal channel indicator out on another PC, because on my usual PC it basically bugs...

Now I've checked it on another PC, and in basic mode the indicator works. But when I try to fiddle around with different settings, using time frame "1" gives strange results, and when I try other settings, I end up crashing on that PC as well...

Also, as far as I can see, the default setting is just the same as for the basic channel indicator. What setting am I supposed to use to get, say, the fractals for every 10 candles?

Anyway, even though it's a great indicator, it is not what I'm really looking for, as far as the task at hand goes.

However, I suddenly kinda saw the light and figured out a simplistic way to get what I'm looking for, although it's not yet how the indicator should really be.

What I did is take the following code:

Code:
int start()
  {
   int D1=1440, H4=240, H1=60, M15=15,B;
   double P;
and change it into (for example):

Code:
int start()
  {
   int D1=480, H4=240, H1=120, M15=60,B;
   double P;
= basic fractal multiplied by 2, 4 and 8, which gives fractals for every 5, 10, 20, 40 bars

or

Code:
int start()
  {
   int D1=252, H4=156, H1=96, M15=60,B;
   double P;
= basic fractal as put in a fibonacci sequence, which gives fractals for every 5, 8, 13, 21 bars

See the attached pictures for what this looks like.

But although this little modification is nice to do some backtesting, it only gives the sequences I'm looking for on the 1hr chart (giving the same fractals when viewing a different time frame).

While I could make a seperate version for every time frame, that is definitely not an ideal solution. And I'm not sure yet what the ideal setting should be, as I have to do a lot more backtesting.

So can someone figure out how to program things so that the sequences of the above examples are automatically applied when you change timeframes? (as with the present versions, it's the same fractals that are seen in all timeframes).

It would be even more ideal if it could be possible to freely set the number of bars for every color in the "input" menu, but that is not the first priority.

See the attached modified indicators, for 1hr charts.

Thanks for all help
Attached Images
File Type: gif fract_ind_exampl_multiple.gif (15.4 KB, 1317 views)
File Type: gif fract_ind_exampl_fibo.gif (15.4 KB, 1278 views)
Attached Files
File Type: mq4 Fractals Ind 1 - mod 1hr.mq4 (5.2 KB, 224 views)
File Type: mq4 Fractals Ind 1 - mod 1hr fib.mq4 (5.2 KB, 221 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #25 (permalink)  
Old 12-10-2006, 08:33 AM
Administrator
 
Join Date: Sep 2005
Posts: 16,259
Blog Entries: 105
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
Some article about fractals (attached).

Besides I found the following:

Quote:
Fractal Adaptive Moving Averages

by John F. Ehlers

We all want to eliminate bad whipsaw trades. Here's a weapon you can add to your arsenal of technical indicators for just that purpose.
The objective of using filters is to separate the desirable signals from the undesirable ones. The practical application of moving averages often involves a tradeoff between the amount of smoothness required and the amount of lag that can be tolerated. Moving averages have this problem because the price data is not stationary and may have different bandwidths over different time intervals.

Various momentum-adaptive filtering techniques have been developed to take advantage of the nonstationary structure of prices. Adaptive filters have also been developed based on price statistics and the cyclic content of the price data. In this article, I will describe a different class of filters that monitors a measure of temporal nonstationarity and alters their bandwidth in response to this measure.

ARE MARKETS FRACTAL?

There is no argument that market prices are fractal. Fractal shapes are self-similar -- that is, a particular fractal has the same roughness and sparseness no matter how closely you view them. For example, if you remove the labels from a five-minute chart, a daily chart, and a weekly chart, you would have difficulty telling them apart. This is the characteristic that makes them fractal. The fractal dimension that describes the sparseness at all magnification levels defines the self-similarity.
...Continued in the October issue of Technical Analysis of STOCKS & COMMODITIES (2005)

And the following:

Quote:
In "FRAMA - Fractal Adaptive Moving Average" article John Ehlers
presents a new method of adaptive smoothing based on assumption that
market prices are fractal. Coding Fractal Adaptive Moving Average (FRAMA)
is relatively straightforward in AmiBroker Formula Language (AFL).
Thanks to its powerful array processing functions FRAMA can be implemented
in AmiBroker without any loops making it extremely fast. Ready-to-use
code is presented in Listing 1. For comparison purposes the code also
plots standard exponential moving average of the same length.

*/

// FRAMA - Fractal Adaptive Moving Average
Price = (H+L)/2;
N = Param( "N", 16, 2, 40, 2 ); // must be even

N3 = ( HHV( High, N ) - LLV( Low, N ) ) / N;

HH = HHV( High, N / 2 ) ;
LL = LLV( Low, N / 2 );

N1 = ( HH - LL ) / ( N / 2 );

HH = HHV( Ref( High, - N/2 ), N/2 );
LL = LLV( Ref( Low, - N/2 ), N/ 2 );

N2 = ( HH - LL ) / ( N / 2 );

Dimen = IIf( N1 > 0 AND N2 > 0 AND N3 > 0, ( log( N1+N2) - log( N3 ) )/log( 2 ), Null );

alpha = exp( -4.6 * (Dimen -1 ) );
alpha = Min( Max( alpha, 0.01 ), 1 ); // bound to 0.01...1 range

Frama = AMA( Price, alpha );

Plot( Frama, "FRAMA("+N+")", colorRed, styleThick );
Plot( EMA( C, N ) , "EMA("+N+")", colorBlue );
Plot( C, "Close", colorBlack, styleCandle );
Attached Files
File Type: pdf fractals.pdf (482.0 KB, 343 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #26 (permalink)  
Old 12-10-2006, 09:12 AM
Senior Member
 
Join Date: Dec 2005
Posts: 144
trevman is on a distinguished road
isnt the problem with fractals the fact that they dont draw soon enough. like if you base your fractal on 5 bar high you will be 3 bars into the move before the fractal is drawn?, or if they're based completly on past movements then they would have to be dynamic to show what theyre meant to show. so are they actually worth using?
__________________
There is no candle.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #27 (permalink)  
Old 12-10-2006, 09:54 AM
Administrator
 
Join Date: Sep 2005
Posts: 16,259
Blog Entries: 105
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 trevman
isnt the problem with fractals the fact that they dont draw soon enough. like if you base your fractal on 5 bar high you will be 3 bars into the move before the fractal is drawn?, or if they're based completly on past movements then they would have to be dynamic to show what theyre meant to show. so are they actually worth using?
I used those fractals in my real account many years ago and now i am trying to re-mind myself about it because i almost forgot this subject and because there are a lot of new indicators were created. Especially indicators from Igorad.
If I have a time so I will create some trading systems based on it.
But it is necessary for me to read some ebooks/articles first.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #28 (permalink)  
Old 12-10-2006, 10:32 AM
Administrator
 
Join Date: Sep 2005
Posts: 16,259
Blog Entries: 105
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
Found some article (two the same files in doc and in pdf format) about how to trade fractals.
In Russian, sorry.
Attached Images
File Type: gif 1.GIF (75.9 KB, 1230 views)
File Type: jpg 2.jpg (278.4 KB, 1203 views)
File Type: jpg 3.jpg (109.2 KB, 1157 views)
File Type: jpg 4.jpg (79.8 KB, 1110 views)
Attached Files
File Type: zip how to trade fractals.zip (1.26 MB, 465 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #29 (permalink)  
Old 12-10-2006, 10:47 AM
Senior Member
 
Join Date: Dec 2005
Posts: 144
trevman is on a distinguished road
does the indicator Ind-Fractals-1 redraw any of its fractals and how long does it take to draw the brown fractals. these seem to show the main trend so taking trades in that direction would be good, but it would need to be established early on.
__________________
There is no candle.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #30 (permalink)  
Old 12-10-2006, 11:23 AM
Junior Member
 
Join Date: Mar 2006
Posts: 4
SilverB is on a distinguished road
Quote:
Originally Posted by trevman
isnt the problem with fractals the fact that they dont draw soon enough. like if you base your fractal on 5 bar high you will be 3 bars into the move before the fractal is drawn?, or if they're based completly on past movements then they would have to be dynamic to show what theyre meant to show. so are they actually worth using?
Unless you use them as S&R levels. I find the multitime fractles really useful to see where SR levels are on the higher TF.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
fractals, fractal, fractals forex

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

LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/indicators-metatrader-4/194-fractals.html
Posted By For Type Date
Forex fractals trading system » forex fractals trading system This thread Refback 02-06-2008 01:57 AM

Similar Threads
Thread Thread Starter Forum Replies Last Post
Do Fractals Repaint the Past mikejody Indicators - Metatrader 4 2 01-14-2007 09:40 PM
System Based on Ichimoku Kinko Hyo Lines and Fractals beeker Suggestions for Trading Systems 8 12-10-2006 05:01 PM
Bill Williams Fractals TheWicker Indicators - Metatrader 4 1 07-29-2006 09:43 AM


All times are GMT. The time now is 08:24 AM.



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