Indicator CLASS

Count PROPERTY (int)
Gets indicator values count. SYNTAX public int Count { get; } EXAMPLE using System; using System.Collections; using System.Collections.Gener...
Tue, May 1, 2018 at 7:20 PM
Data PROPERTY (HistoricalData)
Gets indicator data for calculation. SYNTAX public HistoricalData Data { get; } EXAMPLE using System; using System.Collections; using System...
Tue, May 1, 2018 at 7:21 PM
LinesCount PROPERTY (int)
Gets indicator's lines count. SYNTAX public int LinesCount { get; }
Tue, May 1, 2018 at 7:22 PM
Name PROPERTY (string)
Gets indicator name. SYNTAX public string Name { get; } EXAMPLE using System; using System.Collections; using System.Collections.Generic; us...
Tue, May 1, 2018 at 7:23 PM
Parameters PROPERTY (object[])
Gets indicator input parameters. SYNTAX public object[] Parameters { get; } EXAMPLE using System; using System.Collections; using System.Col...
Tue, May 1, 2018 at 7:24 PM
PriceType PROPERTY (PriceType)
Gets the indicator's price source. SYNTAX public PriceType PriceType { get; }
Tue, May 1, 2018 at 7:25 PM
Script PROPERTY (NETIndicator)
Gets the NETIndicator object instance for custom indicators, null for builtin indicators. SYNTAX public NETIndicator Script { get; }
Tue, May 1, 2018 at 7:26 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 ...
Tue, May 1, 2018 at 7:28 PM
GetValue (int lineNumber) METHOD (Return: double)
Returns the indicator value in the last point. SYNTAX public double GetValue (int lineNumber) PARAMETERS lineNumber — int zero-based number...
Tue, May 1, 2018 at 7:29 PM
GetValue () METHOD (Return: double)
Returns the indicator value for the first line in the last point. SYNTAX public double GetValue () RETURN double calculated value EXAMPL...
Tue, May 1, 2018 at 7:31 PM