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 (2) Thread Tools Display Modes
  1 links from elsewhere to this Post. Click to view. #1 (permalink)  
Old 04-09-2007, 07:04 PM
Member
 
Join Date: Jun 2006
Posts: 44
Aleksandr Nevskiy is on a distinguished road
Chaos Explorer (my indicator for patterns)

The idea is to visualize long-term patterns, so that to be prepared for a major move. Another idea was to combine different timeframes on one picture, but instead I just added new indicator windows with different settings.

formula: indicator(n) = price(n) / price(n-Separation)
Separation = {1,5,8,13,21,34,55,89,144,233,377}
so basically I'm calculating ratio of current H,L,O,C and it's previous value (each separately), and draw 4 lines out of those. Then I add another indicator window, but this time Separation is the next value from the Fibonacci set. When we see an array of indicators, sometimes very vivid patterns can be observed. Patters are built from sign on the indicator chart, which are placed there, when current value is either below (green, buy soon) or above (red, sell soon) the empirically defined levels. I believe patters can be tweaked playing around with those levels.

So below are my screenshots with the evident patterns.


Attached Images
File Type: gif chaos.gif (119.3 KB, 1865 views)
File Type: gif fract2.gif (116.6 KB, 1716 views)
File Type: gif rubl.gif (38.9 KB, 1629 views)
Attached Files
File Type: mq4 XaosExplorer.mq4 (3.4 KB, 480 views)
File Type: tpl xaos.tpl (6.9 KB, 398 views)

Last edited by Aleksandr Nevskiy; 04-09-2007 at 07:20 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 04-09-2007, 11:30 PM
Senior Member
 
Join Date: Aug 2006
Posts: 403
RickW00716 is on a distinguished road
Very interesting

I have downloaded your indicator and I find it very interesting.

How do you use it in your trading?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 04-09-2007, 11:56 PM
BluePearl's Avatar
Senior Member
 
Join Date: Oct 2005
Posts: 203
BluePearl is on a distinguished road
Aleksandr, does this indicator repaint the past?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 04-10-2007, 12:15 AM
ralph.ronnquist's Avatar
Senior Member
 
Join Date: Oct 2006
Posts: 280
ralph.ronnquist is on a distinguished road
nice indication. though, doesn't the expression of "indicator(n)=price(n)/price(n-separation)" mean that you plot, at bar "n", a value that is obtained by looking at a future bar, which is "separation" bars in the future of bar "n"?

Perhaps you meant to use "+" instead of "-"? (I'm fairly sure that your MT4 does not provide many bars in future of bar 0 )?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 04-10-2007, 09:09 AM
Member
 
Join Date: Jun 2006
Posts: 44
Aleksandr Nevskiy is on a distinguished road
Quote:
Originally Posted by ralph.ronnquist
nice indication. though, doesn't the expression of "indicator(n)=price(n)/price(n-separation)" mean that you plot, at bar "n", a value that is obtained by looking at a future bar, which is "separation" bars in the future of bar "n"?

Perhaps you meant to use "+" instead of "-"? (I'm fairly sure that your MT4 does not provide many bars in future of bar 0 )?
nono, it's not like that.

if we have 1,2,5,7,8,2,4,6 sequence then we go like this:
2/1, 5/2,7/5,8/7,2/8,4/2,6/4
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 04-10-2007, 09:14 AM
Senior Member
 
Join Date: Aug 2006
Posts: 403
RickW00716 is on a distinguished road
Quote:
Originally Posted by Aleksandr Nevskiy
nono, it's not like that.

if we have 1,2,5,7,8,2,4,6 sequence then we go like this:
2/1, 5/2,7/5,8/7,2/8,4/2,6/4
How do you use it to trade?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 04-10-2007, 11:34 AM
Member
 
Join Date: Jun 2006
Posts: 44
Aleksandr Nevskiy is on a distinguished road
Quote:
Originally Posted by RickW00716
How do you use it to trade?
Well, I'm just trying to figure it out myself
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 04-10-2007, 11:38 AM
Tragapips's Avatar
Member
 
Join Date: Dec 2005
Posts: 87
Tragapips is on a distinguished road
Xaos doesn´t refresh itself.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 04-10-2007, 11:58 AM
ralph.ronnquist's Avatar
Senior Member
 
Join Date: Oct 2006
Posts: 280
ralph.ronnquist is on a distinguished road
Quote:
Originally Posted by Aleksandr Nevskiy
nono, it's not like that.

if we have 1,2,5,7,8,2,4,6 sequence then we go like this:
2/1, 5/2,7/5,8/7,2/8,4/2,6/4
Maybe I don't understand it properly, but as far as I can read the code, it says:
PHP Code:
      buff1[pos]=Close[pos]/Close[pos-Separation];
      
buff2[pos]=Open[pos]/Open[pos-Separation];
      
buff3[pos]=High[pos]/High[pos-Separation];
      
buff4[pos]=Low[pos]/Low[pos-Separation]; 
where "Separation" is a positive number, and "pos" is the bar index.

So for pos=0, you will get pos-Separation < 0. E.g. Close[0]/Close[-4] (if Separation=4) which thus refers into the future. Separation=4 is of course meaningless except for bars 4 and up, but the result is anyhow that every bar is painted by using a number that refers into the future of it.

It may still be a "good indicator" visually, of course.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 04-10-2007, 01:12 PM
wibitiens's Avatar
Senior Member
 
Join Date: Dec 2006
Posts: 260
wibitiens is on a distinguished road
Wow! Nice indicator! Look interesting
I'll try it now. Good job Aleksandr

Cheers,
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
chaos

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/6941-chaos-explorer-my-indicator-patterns.html
Posted By For Type Date
Xaos Explore Perky_Mod - MQL4 Code Base Post #42 Refback 08-02-2008 05:55 PM
under_marazm This thread Refback 10-24-2007 07:19 PM

Similar Threads
Thread Thread Starter Forum Replies Last Post
Chaos EA final newdigital Expert Advisors - Metatrader 3 15 09-24-2008 11:22 PM
Fx-Chaos (Template) mistico Suggestions for Trading Systems 18 09-23-2007 02:46 AM
Trading Chaos - (Rrofitunity) KillerKhan Suggestions for Trading Systems 19 03-01-2007 08:47 PM


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



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