Class UpsideGapTwoCrows
- Namespace
- FinanceSharp.Indicators.CandlestickPatterns
- Assembly
- FinanceSharp.dll
Upside Gap Two Crows candlestick pattern
public class UpsideGapTwoCrows : CandlestickPattern, IIndicator, IUpdatable
- Inheritance
-
UpsideGapTwoCrows
- Implements
- Inherited Members
- Extension Methods
Remarks
Must have:
- first candle: white candle, usually long
- second candle: small black real body
- gap between the first and the second candle's real bodies
- third candle: black candle with a real body that engulfs the preceding candle and closes above the white candle's close The meaning of "short" and "long" is specified with SetCandleSettings The returned value is negative(-1): upside gap two crows is always bearish; The user should consider that an upside gap two crows is significant when it appears in an uptrend, while this function does not consider the trend
Constructors
UpsideGapTwoCrows()
Initializes a new instance of the UpsideGapTwoCrows class.
public UpsideGapTwoCrows()
UpsideGapTwoCrows(string)
Initializes a new instance of the UpsideGapTwoCrows class using the specified name.
public UpsideGapTwoCrows(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()