What Igor (Fxbs) is trying to say is that Solar wind is repainting
It is an unfortunate conversion of Fisher's transform from TS with slightly changed parameters
PHP Code:
{ Ehlers' Fisher Transform Indicator
Copyright 2003, John Ehlers. All rights reserved. }
Inputs: price((H+L)/2), len(10);
Vars: maxH(0),minL(0),Fish(0),x(0);
maxH = highest(price,len);
minL = lowest(price,len);
x = .5*2*((price - minL)/(maxH - minL) - .5) + .5*value1[1];
if x > .999 then x = .999;
if x < -.999 then x = -.999;
Fish = .5*log((1 + x)/(1 - x)) + .5*Fish[1];
plot1(Fish,"Fisher");
plot2(Fish[1],"Trigger");
The way it is writen, instead of taking into account
previous value it takes a
future value into account an thus makes it worthless
You can find a cleaned up version of "Solar wind" in the post
For the sake of comparing I named it Solar wind too but bare in mind that it is Fiher's transform and treat it that way
Quote:
Originally Posted by ahmedazizelias
hi
wow ...it is first time forme to hear about an indicator with 100% accurate!!!!
could you post here this 100 % accurate indicator...and the other indicators that also 100% accurate ..BUT THEY SHOULD NOT REPAINT THE PAST otherwise it will be harmfull not usefull ones...
thank you in advance for your reply
|