Retrieves Alligator teeth line value according to given offset.


SYNTAX


public double GetTeethValue (int offset)


PARAMETERS


offset — int


RETURN


double


EXAMPLE


using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using PTLRuntime.NETScript;

namespace iAlligatorExamples
{
     public class iAlligatorExamples : NETStrategy
     {
         public override void OnQuote()
         {
         //If you use this method you can get indicators data
         Indicator Alligator = Indicators.iAlligator(CurrentData,5,1,8,1,11,1,MAMode.EMA, PriceType.Close);
    
         //Also you can use methods of the class
             double Alligator_jaw = Indicators.iAlligator(CurrentData,5,1,8,1,11,1,MAMode.EMA, PriceType.Close).GetJawValue(1);
             double Alligator_lips = Indicators.iAlligator(CurrentData,5,1,8,1,11,1,MAMode.EMA, PriceType.Close).GetLipsValue(1);
             double Alligator_teeth = Indicators.iAlligator(CurrentData,5,1,8,1,11,1,MAMode.EMA, PriceType.Close).GetTeethValue(1);
         }
     }
}