Skip to main content

cdlidentical3crows


CDLIDENTICAL3CROWS

Type: cdlidentical3crows • Category: indicators

Description

Identical Three Crows

Parameters

NameTypeDescriptionRequiredDefault
openstringno
highstringno
lowstringno
closestringno
patternstringno"CDLIDENTICAL3CROWS"

Help

CDLIDENTICAL3CROWS

Overview

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

Description

The CDLIDENTICAL3CROWS worker identifies the "Identical Three Crows" candlestick pattern, which is a bearish reversal pattern.

What does this worker do?

This worker analyzes a set of candlestick data and checks if the current pattern matches the "Identical Three Crows" pattern. The pattern consists of three consecutive black (or red) candles with the same close price, indicating a strong bearish sentiment.

How to interpret the results

The worker returns a value indicating whether the current pattern matches the "Identical Three Crows" pattern. A positive result indicates that the pattern is present, suggesting a potential bearish reversal in the market.

Parameters

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

Parameters List

  • 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: CDLIDENTICAL3CROWS) - The pattern to identify.

Example Usage

To use the CDLIDENTICAL3CROWS worker, provide the required parameters in the following format:

{
"open": "value",
"high": "value",
"low": "value",
"close": "value",
"pattern": "CDLIDENTICAL3CROWS"
}

Replace the value placeholders with the actual values for the open, high, low, and close prices. The worker will then analyze the data and return a result indicating whether the "Identical Three Crows" pattern is present.