Returns an instance of the class Indicator, which calculates the value of the indicator Alligator.


SYNTAX


public iAlligator iAlligator (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


iAlligator Returns an instance of the class iAlligator


EXAMPLE


 The following code example shows how to use the indicator Alligator.
 
 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.iAlligator(CurrentData, 13, 8, 8, 5, 5, 3, MAMode.SMMA, PriceType.Weighted);
         }
     }
 }