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.
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?
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.
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
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.
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?
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);
}