Skip to main content

cdlclosingmarubozu


CDLCLOSINGMARUBOZU

Type: cdlclosingmarubozu • Category: indicators

Description

Closing Marubozu

Parameters

NameTypeDescriptionRequiredDefault
openstringno
highstringno
lowstringno
closestringno
patternstringno"CDLCLOSINGMARUBOZU"

Help

CDLCLOSINGMARUBOZU

Description

The CDLCLOSINGMARUBOZU indicator is used in financial markets to identify a specific candlestick pattern known as the Closing Marubozu.

Overview

This worker identifies the Closing Marubozu candlestick pattern, which is a type of Japanese candlestick pattern. The Closing Marubozu is characterized by a long body with little to no wick at the close, indicating a strong close in the direction of the trend.

What does this worker do?

The CDLCLOSINGMARUBOZU worker analyzes the given open, high, low, and close prices to determine if a Closing Marubozu pattern is present. It returns a value indicating the presence or absence of this pattern.

How to Interpret the Results

The worker returns a boolean value (true or false) indicating whether the Closing Marubozu pattern is present in the given price data. A true value suggests that the pattern is present, while a false value indicates that it is not.

Parameters

The following parameters are required to use the CDLCLOSINGMARUBOZU worker:

Parameters Schema (JSON)

{
"open": {
"type": "string",
"description": "The opening price of the candlestick."
},
"high": {
"type": "string",
"description": "The highest price of the candlestick."
},
"low": {
"type": "string",
"description": "The lowest price of the candlestick."
},
"close": {
"type": "string",
"description": "The closing price of the candlestick."
},
"pattern": {
"type": "string",
"default": "CDLCLOSINGMARUBOZU",
"description": "The name of the pattern to identify (default is CDLCLOSINGMARUBOZU)."
}
}

Detailed Parameters List

  • open: string - The opening price of the candlestick.
  • high: string - The highest price of the candlestick.
  • low: string - The lowest price of the candlestick.
  • close: string - The closing price of the candlestick.
  • pattern: string (default: CDLCLOSINGMARUBOZU) - The name of the pattern to identify. This parameter is optional and defaults to CDLCLOSINGMARUBOZU if not provided.