LO
    
        
            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
Replies
                     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

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