Returns an instance of the class iGator, which calculates the value of the indicator Gator.


SYNTAX


public iGator iGator (HistoricalData data,int jaw_period,int jaw_shift,int teeth_period,int teeth_shift,int lips_period,int lips_shift,MAMode mode,PriceType priceType)


PARAMETERS


data — HistoricalData
Data for the calculation of the indicator


jaw_period — int
jaw period


jaw_shift — int
jaw shift


teeth_period — int
teeth period


teeth_shift — int
teeth shift


lips_period — int
lips period


lips_shift — int
lips shift


mode — MAMode
сalculation modes of MA indicator


priceType — PriceType
type of prices for indicator calculation


RETURN


iGator Returns an instance of the class iGator


EXAMPLE


 The following code example shows how to use the indicator Gator.
 
 using System;
 using System.Collections.Generic;
 using System.Linq;
 using System.Text;
 using PTLRuntime.NETScript;
 using System.Drawing;
 using PTLRuntime.NETScript.Indicators;

 namespace Indicators
 {
     public class IndicatorExample : NETStrategy
     {
         private Indicator indicator;

         public override void Init()
         {
             indicator = Indicators.iGator(CurrentData, 13, 8, 8, 5, 5, 3, MAMode.SMA, PriceType.Low);
         }
     }
 }