iADX CLASS

Count PROPERTY (int)
Gets indicator values count SYNTAX public int Count { get; } EXAMPLE using System; using System.Collections; using System.Collections.Generi...
Sun, May 13, 2018 at 4:04 PM
Data PROPERTY (HistoricalData)
Gets indicator data for calculation SYNTAX public HistoricalData Data { get; } EXAMPLE using System; using System.Collections; using System....
Sun, May 13, 2018 at 4:05 PM
LinesCount PROPERTY (int)
Gets indicator's lines count SYNTAX public int LinesCount { get; }
Sun, May 13, 2018 at 4:06 PM
Mode PROPERTY (MAMode)
Gets the indicators' moving mode SYNTAX public MAMode Mode { get; }
Sun, May 13, 2018 at 4:06 PM
Name PROPERTY (string)
Gets indicator name SYNTAX public string Name { get; } EXAMPLE using System; using System.Collections; using System.Collections.Generic; usi...
Sun, May 13, 2018 at 4:07 PM
Parameters PROPERTY (object[])
Gets indicator input parameters SYNTAX public object[] Parameters { get; } EXAMPLE using System; using System.Collections; using System.Coll...
Sun, May 13, 2018 at 4:22 PM
Period PROPERTY (int)
Gets the indicator's period SYNTAX public int Period { get; }
Sun, May 13, 2018 at 4:25 PM
PriceType PROPERTY (PriceType)
Gets the indicator's price source SYNTAX public PriceType PriceType { get; }
Sun, May 13, 2018 at 4:26 PM
Script PROPERTY (NETIndicator)
Gets the NETIndicator object instance for custom indicators, null for builtin indicators SYNTAX public NETIndicator Script { get; }
Sun, May 13, 2018 at 4:27 PM
GetMainValue (int offset) METHOD (Return: double)
Retrieves main ADX line value according to given offset. SYNTAX public double GetMainValue (int offset) PARAMETERS offset — int RETURN dou...
Sun, May 13, 2018 at 4:31 PM