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 Thread Tools Display Modes
  #1 (permalink)  
Old 05-24-2006, 06:01 AM
Junior Member
 
Join Date: Sep 2005
Posts: 22
trohoang is on a distinguished road
Logarithmic spiral Indicator - predicting price and time

I am reading the Fibonacci Applications and Strategies for Trades by Robert Fisher and I came cross the logarithmic spiral indicator. The author claims that provides the link between price and time analysis and it is the answer to forecasting both price and time.

As you all are awared, the spiral is called the most beautiful of mathematic curves and has occurred for millions of years in nature. The logarithmic spiral is the only mathematical curve to follow the pattern of growth expressed in the nautilus shell. He claims that during the stock market crash in October 1987 when every other method of analysis seems to fail, the correct spiral correctly identifed the bottom of the crash.

Has anyone come across the logarithmic spiral indicator for metatrade or has attempted to create an indicator for it?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 05-24-2006, 08:50 AM
xard777's Avatar
Senior Member
 
Join Date: Mar 2006
Posts: 369
xard777 is on a distinguished road
re LogSpiral

I came across some info on that a couple of years ago...


Log Spirals
As few as three segments may be used for proper analysis
This would equal to 270deg, or three quarters.

Step 1 Calculate the ratio
Seed Seed Ratio
497.00 362.00 1.372928177

Calculate the Inverse of the raio

1 1.372928177 0.728370221

A minimum of three segments, 270 degrees/three quadrants,
should be used when rotating counterclockwise.

Step 2 Place the seed segment values, on segments DE & EF

Step 3 Calculate the ratio
Seed Seed Ratio
859.00 497.00 1.728370221

Calculate the Inverse of the raio

1 1.728370221 0.578579744

Segments

AB = 139.88
BC = 192.05
CD = 263.67
DE = 362.00 Seed
EF = 497.00 Seed
FG = 682.35
GH = 936.81
HI = 1286.17
IJ = 1765.83

AB = 55.69
BC = 96.26
CD = 166.37
DE = 287.55
EF = 497.00 Seed
FG = 859.00 Seed
GH = 1484.67
HI = 2566.06
IJ = 4435.10
Attached Images
File Type: jpg logspiral.jpg (8.1 KB, 581 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 05-24-2006, 01:13 PM
Senior Member
 
Join Date: Dec 2005
Location: Null
Posts: 534
drgoodvibe is on a distinguished road
I would look forward to seeing an indicator made of this...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 05-25-2006, 02:44 PM
Junior Member
 
Join Date: Sep 2005
Posts: 22
trohoang is on a distinguished road
Point A and B of the Spiral

The hardest part of using this spiral will be select the proper starting points A & B. It will be a challenge for metatrader coding as we will need to shift the two points around to obtain the correct spiral.

Enclosed is excerpts from the book.
Attached Files
File Type: doc concept_of_the_spiral.doc (443.0 KB, 293 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 05-28-2006, 11:31 PM
Junior Member
 
Join Date: Sep 2005
Posts: 22
trohoang is on a distinguished road
More Logarithmic Spiral in Action

Here are more info on the application of the logarithmic spiral on real charts.
Attached Files
File Type: doc more on the structure of spiral.doc (585.0 KB, 218 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 06-30-2006, 12:02 AM
Senior Member
 
Join Date: Apr 2006
Posts: 157
dellan is on a distinguished road
very interesting
we should continue the research
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 07-16-2006, 11:58 AM
Junior Member
 
Join Date: Jul 2006
Posts: 2
main is on a distinguished road
i'm very interested in this subject;
is it possible for mt programmers to say something about this tool, hard to create it or not? trohoang attached all useful info i think, we could say that the code for this is written, maybe someone with mql skills could look deeper in this problem, i think it could be something great;
please contribute if you can;
thanks in advance

main
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 07-16-2006, 12:32 PM
CP6 CP6 is offline
Member
 
Join Date: Jun 2006
Posts: 87
CP6 is on a distinguished road
arghh...im searching for whole 3 days & 3 night non stop for the fibonacci spiral...still searching & waiting..i've seen someone post chart with fibonacci spiral attach to the chart at forexfactory forum...i've been email him and nothing reply untill now.

thanks

cp6
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 07-16-2006, 12:43 PM
Junior Member
 
Join Date: Jul 2006
Posts: 2
main is on a distinguished road
please write here if you get any useful info; is this chart in forex factory with spiral is in metatrader? i've just registered there but have to wait 24h to activate my account, so i can't check it on my own; maybe you could attach this chart in this topic?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 09-07-2006, 07:20 AM
phoenix's Avatar
Senior Member
 
Join Date: May 2006
Posts: 287
phoenix is on a distinguished road
here's the equation, but not mql AND i cant translate
*****************
DrawSpiral();
function DrawSpiral()
{ var points:Array = new Array();
var b:Number = DegToRad(80);
var r:Number;
var t:Number;
var i:Number;
var a:Number = 1;
for (i=0; i<=500; i++)
{ t = a * Math.PI/4; r = Math.exp(t * cot(b));
points[i] = new Object();
points[i].r = r;
points[i].x = r * Math.cos(t);
points[i].y = r * Math.sin(t);
a+=0.2; }
with (spiral_mc)
{ lineStyle(0.5,0xff0000);
moveTo(points[0].x, points[0].y);
for (i=1; i<=500; i++)
{ lineTo(points[i].x, points[i].y);
}
}
}
function DegToRad(degrees:Number)
{ return degrees * Math.PI/180;}

function cot(t:Number)
{ return 1 / Math.tan(t);
}

*****************

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

Bookmarks

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 On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Searching for Time-Price Analysis Indicator shsharker Metatrader 4 1 01-11-2007 07:23 AM
Price and Time Targets leutzuro Documentation 6 04-26-2006 03:30 PM
Time and price newdigital Expert Advisors - Metatrader 4 0 12-27-2005 01:05 PM


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



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