Skip to main content

cdldoji


CDLDOJI

Type: cdldoji • Category: indicators

Description

Doji

Parameters

NameTypeDescriptionRequiredDefault
openstringno
highstringno
lowstringno
closestringno
patternstringno"CDLDOJI"

Help

CDLDOJI

Description

The CDLDOJI worker is an indicator used in financial markets to identify a specific candlestick pattern known as the Doji.

What does this worker do?

This worker analyzes a set of candlestick data, specifically the open, high, low, and close prices, to identify a Doji pattern. The Doji pattern is characterized by a candlestick with a small body, indicating a lack of direction in the market.

How to interpret the results

The result of this worker is a value that indicates the presence or absence of a Doji pattern. A positive value typically indicates a bullish Doji, while a negative value indicates a bearish Doji. A value of 0 indicates that no Doji pattern was detected.

Parameters

The following parameters are required to use the CDLDOJI 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": "CDLDOJI",
"description": "The pattern to be identified (default: CDLDOJI)"
}
}

Detailed Parameters

  • open: string - The open price of the candlestick.
  • high: string - The high price of the candlestick.
  • low: string - The low price of the candlestick.
  • close: string - The close price of the candlestick.
  • pattern: string (default: CDLDOJI) - The pattern to be identified. For this worker, the default value is CDLDOJI.