GetMainValue (int offset)
method
Retrieves main ADX 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 iADXExamples
{
public class iADXExamples : NETStrategy
{
public override void OnQuote()
{
//If you use this method you can get indicators data
Indicator ADX = Indicators.iADX(CurrentData,20);
//Also you can use methods of the class
double ADX_main = Indicators.iADX(CurrentData,20).GetMainValue(1);
double ADX_minus = Indicators.iADX(CurrentData,20).GetMinusValue(1);
double ADX_plus = Indicators.iADX(CurrentData,20).GetPlusValue(1);
}
}
}
Discussion
Join PTMC community to post your comments
No comments yet. Be the first.