Retrieves plus ADX line value according to given offset
SYNTAX
public double GetPlusValue (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);
}
}
}