Lean  $LEAN_TAG$
QuantConnect.Indicators.CandlestickPatterns.MorningDojiStar Class Reference

Morning Doji Star candlestick pattern More...

Inheritance diagram for QuantConnect.Indicators.CandlestickPatterns.MorningDojiStar:
[legend]

Public Member Functions

 MorningDojiStar (string name, decimal penetration=0.3m)
 Initializes a new instance of the MorningDojiStar class using the specified name. More...
 
 MorningDojiStar (decimal penetration)
 Initializes a new instance of the MorningDojiStar class. More...
 
 MorningDojiStar ()
 Initializes a new instance of the MorningDojiStar class. More...
 
override void Reset ()
 Resets this indicator to its initial state More...
 
- Public Member Functions inherited from QuantConnect.Indicators.WindowIndicator< IBaseDataBar >
override void Reset ()
 Resets this indicator to its initial state More...
 

Protected Member Functions

override decimal ComputeNextValue (IReadOnlyWindow< IBaseDataBar > window, IBaseDataBar input)
 Computes the next value of this indicator from the given state More...
 
- Protected Member Functions inherited from QuantConnect.Indicators.CandlestickPatterns.CandlestickPattern
 CandlestickPattern (string name, int period)
 Creates a new CandlestickPattern with the specified name More...
 
- Protected Member Functions inherited from QuantConnect.Indicators.WindowIndicator< IBaseDataBar >
 WindowIndicator (string name, int period)
 Initializes a new instance of the WindowIndicator class More...
 
override decimal ComputeNextValue (T input)
 Computes the next value of this indicator from the given state More...
 
abstract decimal ComputeNextValue (IReadOnlyWindow< T > window, T input)
 Computes the next value for this indicator from the given state. More...
 

Properties

override bool IsReady [get]
 Gets a flag indicating when this indicator is ready and fully initialized More...
 

Additional Inherited Members

- Public Attributes inherited from QuantConnect.Indicators.WindowIndicator< IBaseDataBar >
int Period
 Gets the period of this window indicator More...
 
override bool IsReady
 Gets a flag indicating when this indicator is ready and fully initialized More...
 
virtual int WarmUpPeriod
 Required period, in data points, to the indicator to be ready and fully initialized More...
 
- Static Protected Member Functions inherited from QuantConnect.Indicators.CandlestickPatterns.CandlestickPattern
static CandleColor GetCandleColor (IBaseDataBar tradeBar)
 Returns the candle color of a candle More...
 
static decimal GetRealBody (IBaseDataBar tradeBar)
 Returns the distance between the close and the open of a candle More...
 
static decimal GetHighLowRange (IBaseDataBar tradeBar)
 Returns the full range of the candle More...
 
static decimal GetCandleRange (CandleSettingType type, IBaseDataBar tradeBar)
 Returns the range of a candle More...
 
static bool GetCandleGapUp (IBaseDataBar tradeBar, IBaseDataBar previousBar)
 Returns true if the candle is higher than the previous one More...
 
static bool GetCandleGapDown (IBaseDataBar tradeBar, IBaseDataBar previousBar)
 Returns true if the candle is lower than the previous one More...
 
static bool GetRealBodyGapUp (IBaseDataBar tradeBar, IBaseDataBar previousBar)
 Returns true if the candle is higher than the previous one (with no body overlap) More...
 
static bool GetRealBodyGapDown (IBaseDataBar tradeBar, IBaseDataBar previousBar)
 Returns true if the candle is lower than the previous one (with no body overlap) More...
 
static decimal GetLowerShadow (IBaseDataBar tradeBar)
 Returns the range of the candle's lower shadow More...
 
static decimal GetUpperShadow (IBaseDataBar tradeBar)
 Returns the range of the candle's upper shadow More...
 
static decimal GetCandleAverage (CandleSettingType type, decimal sum, IBaseDataBar tradeBar)
 Returns the average range of the previous candles More...
 

Detailed Description

Morning Doji Star candlestick pattern

Must have:

  • first candle: long black real body
  • second candle: doji gapping down
  • third candle: white real body that moves well within the first candle's real body The meaning of "doji" and "long" is specified with SetCandleSettings The meaning of "moves well within" is specified with penetration and "moves" should mean the real body should not be short ("short" is specified with SetCandleSettings) - Greg Morris wants it to be long, someone else want it to be relatively long The returned value is positive(+1): morning doji star is always bullish; the user should consider that a morning star is significant when it appears in a downtrend, while this function does not consider the trend

Definition at line 38 of file MorningDojiStar.cs.

Constructor & Destructor Documentation

◆ MorningDojiStar() [1/3]

QuantConnect.Indicators.CandlestickPatterns.MorningDojiStar.MorningDojiStar ( string  name,
decimal  penetration = 0.3m 
)

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

Parameters
nameThe name of this indicator
penetrationPercentage of penetration of a candle within another candle

Definition at line 55 of file MorningDojiStar.cs.

Here is the call graph for this function:

◆ MorningDojiStar() [2/3]

QuantConnect.Indicators.CandlestickPatterns.MorningDojiStar.MorningDojiStar ( decimal  penetration)

Initializes a new instance of the MorningDojiStar class.

Parameters
penetrationPercentage of penetration of a candle within another candle

Definition at line 70 of file MorningDojiStar.cs.

◆ MorningDojiStar() [3/3]

QuantConnect.Indicators.CandlestickPatterns.MorningDojiStar.MorningDojiStar ( )

Initializes a new instance of the MorningDojiStar class.

Definition at line 78 of file MorningDojiStar.cs.

Member Function Documentation

◆ ComputeNextValue()

override decimal QuantConnect.Indicators.CandlestickPatterns.MorningDojiStar.ComputeNextValue ( IReadOnlyWindow< IBaseDataBar window,
IBaseDataBar  input 
)
protected

Computes the next value of this indicator from the given state

Parameters
windowThe window of data held in this indicator
inputThe input given to the indicator
Returns
A new value for this indicator

Definition at line 97 of file MorningDojiStar.cs.

Here is the call graph for this function:

◆ Reset()

override void QuantConnect.Indicators.CandlestickPatterns.MorningDojiStar.Reset ( )

Resets this indicator to its initial state

Definition at line 158 of file MorningDojiStar.cs.

Property Documentation

◆ IsReady

override bool QuantConnect.Indicators.CandlestickPatterns.MorningDojiStar.IsReady
get

Gets a flag indicating when this indicator is ready and fully initialized

Definition at line 87 of file MorningDojiStar.cs.


The documentation for this class was generated from the following file: