Retrieves main Bands line value according to given offset.


SYNTAX


public double GetMainValue (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 iBandsExamples
{
     public class iBandsExamples : NETStrategy
     {
         public override void OnQuote()
         {
         //If you use this method you can get indicators data
         Indicator Bands = Indicators.iBands(CurrentData,20);
    
         //Also you can use methods of the class
             double Bands_lower = Indicators.iBands(CurrentData,20).GetLowerValue(1);
             double Bands_upper = Indicators.iBands(CurrentData,20).GetUpperValue(1);
             double Bands_main = Indicators.iBands(CurrentData,20).GetMainValue(1);
         }
     }
}