GetMainValue (int offset)
method
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);
}
}
}
Discussion
Join PTMC community to post your comments
No comments yet. Be the first.