Skip to main content

cdleveningdojistar


CDLEVENINGDOJISTAR

Type: cdleveningdojistar • Category: indicators

Description

Evening Doji Star

Parameters

NameTypeDescriptionRequiredDefault
openstringno
highstringno
lowstringno
closestringno
patternstringno"CDLEVENINGDOJISTAR"

Help

CDLEVENINGDOJISTAR

Overview

The CDLEVENINGDOJISTAR worker is an indicator used in financial markets to identify a specific candlestick pattern.

Description

The Evening Doji Star is a three-candlestick pattern that appears at the end of an uptrend, signaling a potential reversal. It consists of a large bullish candle, followed by a doji (a candle with a very small body), and finally a large bearish candle.

What does this worker do?

This worker identifies the Evening Doji Star pattern in a given set of candlestick data, providing an indication of a potential trend reversal.

How to interpret the results

When the worker identifies an Evening Doji Star pattern, it may indicate that the current uptrend is weakening, and a potential reversal to a downtrend may occur. However, as with any technical analysis indicator, it should be used in conjunction with other forms of analysis and risk management techniques.

Parameters

The following parameters can be passed to the CDLEVENINGDOJISTAR worker:

Parameters Schema (JSON)

{
"open": {
"type": "string",
"description": "The open price of the candlestick"
},
"high": {
"type": "string",
"description": "The high price of the candlestick"
},
"low": {
"type": "string",
"description": "The low price of the candlestick"
},
"close": {
"type": "string",
"description": "The close price of the candlestick"
},
"pattern": {
"type": "string",
"default": "CDLEVENINGDOJISTAR",
"description": "The pattern to identify (defaults to CDLEVENINGDOJISTAR)"
}
}

Detailed Parameters

  • open: The open price of the candlestick. (string)
  • high: The high price of the candlestick. (string)
  • low: The low price of the candlestick. (string)
  • close: The close price of the candlestick. (string)
  • pattern: The pattern to identify. Defaults to CDLEVENINGDOJISTAR. (string)