Indicator CLASS
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
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
Gets indicator's lines count. SYNTAX public int LinesCount { get; }
Tue, May 1, 2018 at 7:22 PM
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
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
Gets the indicator's price source. SYNTAX public PriceType PriceType { get; }
Tue, May 1, 2018 at 7:25 PM
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
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
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
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