Click or drag to resize

ISimpleTradeSignal Interface

Represents an interface of simple trade indicator (which generate some trade signal).

Namespace:  FinAnalysis.Base
Assembly:  FinAnalysis.Base (in FinAnalysis.Base.dll) Version: 2.1.13-cc97e13414b71fde928e8f3a546ac1daf26f295f
Syntax
C#
public interface ISimpleTradeSignal : ITradeSignal

The ISimpleTradeSignal type exposes the following members.

Properties
  NameDescription
Public propertyReady
Indicates that indicator has some value, which you can use. Useful for averages, which can not calculate its value on small amount of data.
(Inherited from ITradeSignal.)
Public propertyStable
Flag is set if and only if indicators values is stable.
(Inherited from ITradeSignal.)
Public propertyTradeSignal
Get indicator's trading signal.
(Inherited from ITradeSignal.)
Public propertyValidationStrategy
Indicate what we must do with invalid input values.
(Inherited from ITradeSignal.)
Top
Methods
  NameDescription
Public methodAdd
Add value to indicator.
Top
See Also