UpperLowerIndicator CLASS

Count PROPERTY (int)
Gets indicator values count SYNTAX public int Count { get; } EXAMPLE using System; using System.Collections; using System.Collections.Generi...
Wed, May 16, 2018 at 1:54 PM
Data PROPERTY (HistoricalData)
Gets indicator data for calculation SYNTAX public HistoricalData Data { get; } EXAMPLE using System; using System.Collections; using System....
Wed, May 16, 2018 at 2:02 PM
LinesCount PROPERTY (int)
Gets indicator's lines count SYNTAX public int LinesCount { get; }
Wed, May 16, 2018 at 2:03 PM
Name PROPERTY (string)
Gets indicator name SYNTAX public string Name { get; } EXAMPLE using System; using System.Collections; using System.Collections.Generic; usi...
Wed, May 16, 2018 at 2:04 PM
Parameters PROPERTY (object[])
Gets indicator input parameters SYNTAX public object[] Parameters { get; } EXAMPLE using System; using System.Collections; using System.Coll...
Wed, May 16, 2018 at 2:07 PM
PriceType PROPERTY (PriceType)
Gets the indicator's price source SYNTAX public PriceType PriceType { get; }
Wed, May 16, 2018 at 2:08 PM
Script PROPERTY (NETIndicator)
Gets the NETIndicator object instance for custom indicators, null for builtin indicators SYNTAX public NETIndicator Script { get; }
Wed, May 16, 2018 at 2:09 PM
GetLowerValue (int offset) METHOD (Return: double)
Retrieves low line value according to given offset. SYNTAX public double GetLowerValue (int offset) PARAMETERS offset — int RETURN d...
Wed, May 16, 2018 at 2:12 PM
GetUpperValue (int offset) PROPERTY (Return: double)
Retrieves up line value according to given offset. SYNTAX public double GetUpperValue (int offset) PARAMETERS offset — int RETURN do...
Wed, May 16, 2018 at 2:13 PM
GetValue (int lineNumber, int offset) METHOD (Return: double)
Returns indicator value SYNTAX public double GetValue (int lineNumber,int offset) PARAMETERS lineNumber — int zero-based number of the indicator...
Wed, May 16, 2018 at 2:15 PM