Table of Contents

Class StalledPattern

Namespace
FinanceSharp.Indicators.CandlestickPatterns
Assembly
FinanceSharp.dll

Stalled Pattern candlestick pattern

public class StalledPattern : CandlestickPattern, IIndicator, IUpdatable
Inheritance
StalledPattern
Implements
Inherited Members
Extension Methods

Remarks

 Must have:
  • three white candlesticks with consecutively higher closes
  • first candle: long white
  • second candle: long white with no or very short upper shadow opening within or near the previous white real body and closing higher than the prior candle
  • third candle: small white that gaps away or "rides on the shoulder" of the prior long real body(= it's at the upper end of the prior real body) The meanings of "long", "very short", "short", "near" are specified with SetCandleSettings; The returned value is negative(-1): stalled pattern is always bearish; The user should consider that stalled pattern is significant when it appears in uptrend, while this function does not consider it

Constructors

StalledPattern()

Initializes a new instance of the StalledPattern class.

public StalledPattern()

StalledPattern(string)

Initializes a new instance of the StalledPattern class using the specified name.

public StalledPattern(string name)

Parameters

name string

The 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

bool

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

timeWindow IReadOnlyWindow<long>
window IReadOnlyWindow<DoubleArray>

The window of data held in this indicator

time long
input DoubleArray

Returns

DoubleArray

A new value for this indicator

Reset()

Resets this indicator to its initial state

public override void Reset()