Table of Contents

Class Kicking

Namespace
FinanceSharp.Indicators.CandlestickPatterns
Assembly
FinanceSharp.dll

Kicking candlestick pattern

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

Remarks

 Must have:
  • first candle: marubozu
  • second candle: opposite color marubozu
  • gap between the two candles: upside gap if black then white, downside gap if white then black The meaning of "long body" and "very short shadow" is specified with SetCandleSettings The returned value is positive(+1) when bullish or negative(-1) when bearish

Constructors

Kicking()

Initializes a new instance of the Kicking class.

public Kicking()

Kicking(string)

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

public Kicking(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()