FisherTransform indicator

Created at 18 Feb 2016, 13:54
How’s your experience with the cTrader Platform?
Your feedback is crucial to cTrader's development. Please take a few seconds to share your opinion and help us improve your trading experience. Thanks!
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