FisherTransform indicator

Created at 18 Feb 2016, 13:54
LO

loryy69

Joined 28.01.2016

FisherTransform indicator
18 Feb 2016, 13:54


Good morning , someone can help me transform the FisherTransform indicator robots with the ability to change the parameters at will ? Thank you


@loryy69
Replies

ColossusFX
20 Feb 2016, 19:38

        [Parameter("Fischer Length", DefaultValue = 13, MinValue = 2)]
        public int Len { get; set; }

        private FisherTransform Fischer;

Fischer = Indicators.GetIndicator<FisherTransform>(Len);

 


@ColossusFX

ColossusFX
20 Feb 2016, 19:38

RE:

Piratetunes said:

        [Parameter("Fischer Length", DefaultValue = 13, MinValue = 2)]
        public int Len { get; set; }

        private FisherTransform Fischer;

Fischer = Indicators.GetIndicator(Len);

 

Then reference fisher indicator


@ColossusFX

ColossusFX
20 Feb 2016, 19:41

                bool Fisherlong = Fischer.Fish[index] > Fischer.trigger[index];
                bool Fishershort = Fischer.Fish[index] < Fischer.trigger[index];

example of use


@ColossusFX

profx48
09 Apr 2025, 21:24 ( Updated at: 10 Apr 2025, 05:29 )

Hi,

Please, where can I download the Fisher Transform indicator from?

A link will be appreciated. 


@profx48