SignalIndicator CLASS
Gets indicator values count SYNTAX public int Count { get; } EXAMPLE using System;
using System.Collections;
using System.Collections.Generi...
Wed, May 16, 2018 at 12:52 PM
Gets indicator data for calculation SYNTAX public HistoricalData Data { get; } EXAMPLE using System;
using System.Collections;
using System....
Wed, May 16, 2018 at 12:53 PM
Gets indicator's lines count SYNTAX public int LinesCount { get; }
Wed, May 16, 2018 at 12:54 PM
Gets indicator name SYNTAX public string Name { get; } EXAMPLE using System;
using System.Collections;
using System.Collections.Generic;
usi...
Wed, May 16, 2018 at 12:55 PM
Gets indicator input parameters SYNTAX public object[] Parameters { get; } EXAMPLE using System;
using System.Collections;
using System.Coll...
Wed, May 16, 2018 at 1:23 PM
Gets the indicator's price source SYNTAX public PriceType PriceType { get; }
Wed, May 16, 2018 at 1:24 PM
Gets the indicator's price source SYNTAX public PriceType PriceType { get; }
Wed, May 16, 2018 at 1:25 PM
Gets the NETIndicator object instance for custom indicators, null for builtin indicators SYNTAX public NETIndicator Script { get; }
Wed, May 16, 2018 at 1:27 PM
Retrieves main SignalIndicator line value according to given offset. SYNTAX public double GetMainValue (int offset) PARAMETERS offset — int ...
Wed, May 16, 2018 at 1:28 PM
Retrieves plus SignalIndicator line value according to given offset. SYNTAX public double GetPlusValue (int offset) PARAMETERS offset — int ...
Wed, May 16, 2018 at 1:30 PM