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 iEnvelopesExamples { public class iEnvelopesExamples : NETStrategy { public override void OnQuote() { //If you use this method you can get indicators data Indicator Envelopes = Indicators.iEnvelopes(CurrentData,20,MAMode.EMA,5,PriceType.Close); //Also you can use methods of the class double Envelopes_lower = Indicators.iEnvelopes(CurrentData,20,MAMode.EMA,5,PriceType.Close).GetLowerValue(1); double Envelopes_main = Indicators.iEnvelopes(CurrentData,20,MAMode.EMA,5,PriceType.Close).GetMainValue(1); double Envelopes_upper = Indicators.iEnvelopes(CurrentData,20,MAMode.EMA,5,PriceType.Close).GetUpperValue(1); } } }