Class LadderBottom
- Namespace
- FinanceSharp.Indicators.CandlestickPatterns
- Assembly
- FinanceSharp.dll
Ladder Bottom candlestick pattern indicator
public class LadderBottom : CandlestickPattern, IIndicator, IUpdatable
- Inheritance
-
LadderBottom
- Implements
- Inherited Members
- Extension Methods
Remarks
Must have:
- three black candlesticks with consecutively lower opens and closes
- fourth candle: black candle with an upper shadow(it's supposed to be not very short)
- fifth candle: white candle that opens above prior candle's body and closes above prior candle's high The meaning of "very short" is specified with SetCandleSettings The returned value is positive (+1): ladder bottom is always bullish; The user should consider that ladder bottom is significant when it appears in a downtrend, while this function does not consider it
Constructors
LadderBottom()
Initializes a new instance of the LadderBottom class.
public LadderBottom()
LadderBottom(string)
Initializes a new instance of the LadderBottom class using the specified name.
public LadderBottom(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()