iFractals 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 8:19 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 8:20 PM
LinesCount PROPERTY (int)
Gets indicator's lines count SYNTAX public int LinesCount { get; }
Sun, May 13, 2018 at 8:21 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 8:22 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 8:23 PM
PriceType PROPERTY (PriceType)
Gets the indicator's price source SYNTAX public PriceType PriceType { get; }
Sun, May 13, 2018 at 8:23 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 8:24 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...
Sun, May 13, 2018 at 8:25 PM
GetUpperValue (int offset) METHOD (Return: double)
Retrieves up line value according to given offset. SYNTAX public double GetUpperValue (int offset) PARAMETERS offset — int RETURN do...
Sun, May 13, 2018 at 8: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 indicat...
Sun, May 13, 2018 at 8:28 PM