Class IdenticalThreeCrows
- Namespace
- FinanceSharp.Indicators.CandlestickPatterns
- Assembly
- FinanceSharp.dll
Identical Three Crows candlestick pattern
public class IdenticalThreeCrows : CandlestickPattern, IIndicator, IUpdatable
- Inheritance
-
IdenticalThreeCrows
- Implements
- Inherited Members
- Extension Methods
Remarks
Must have:
- three consecutive and declining black candlesticks
- each candle must have no or very short lower shadow
- each candle after the first must open at or very close to the prior candle's close The meaning of "very short" is specified with SetCandleSettings; the meaning of "very close" is specified with SetCandleSettings(Equal); The returned value is negative(-1): identical three crows is always bearish; The user should consider that identical 3 crows is significant when it appears after a mature advance or at high levels, while this function does not consider it
Constructors
IdenticalThreeCrows()
Initializes a new instance of the IdenticalThreeCrows class.
public IdenticalThreeCrows()
IdenticalThreeCrows(string)
Initializes a new instance of the IdenticalThreeCrows class using the specified name.
public IdenticalThreeCrows(string name)
Parameters
namestringThe name of this indicator
Properties
IsReady
Gets a flag indicating when this indicator is ready and fully initialized
public override bool IsReady { get; }
Property Value
Methods
Forward(IReadOnlyWindow<long>, IReadOnlyWindow<DoubleArray>, long, DoubleArray)
Computes the next value of this indicator from the given state
protected override DoubleArray Forward(IReadOnlyWindow<long> timeWindow, IReadOnlyWindow<DoubleArray> window, long time, DoubleArray input)
Parameters
timeWindowIReadOnlyWindow<long>windowIReadOnlyWindow<DoubleArray>The window of data held in this indicator
timelonginputDoubleArray
Returns
- DoubleArray
A new value for this indicator
Reset()
Resets this indicator to its initial state
public override void Reset()