Retrieves low line value according to given offset.


SYNTAX


public double GetLowerValue (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 UpperLowerIndicatorExamples
{
     public class UpperLowerIndicatorExamples : NETStrategy
     {
         public override void OnQuote()
         {
         //If you use this method you can get indicators data
         Indicator Fractals = Indicators.iFractals(CurrentData);
    
         //Also you can use methods of the class
             double Fractals_upper = Indicators.iFractals(CurrentData).GetUpperValue(1);
             double Fractals_lower = Indicators.iFractals(CurrentData).GetLowerValue(1);
         }
     }
}