Thread: zor v.1
View Single Post
  #18 (permalink)  
Old 11-03-2007, 10:43 AM
mladen's Avatar
mladen mladen is online now
Senior Member
 
Join Date: Oct 2006
Posts: 331
mladen is on a distinguished road
Relax...

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 View Post
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
Attached Images
File Type: gif fisher.gif (13.8 KB, 1000 views)

Last edited by mladen; 07-21-2008 at 06:07 PM.
Reply With Quote