Skip to main content

cdlladderbottom


CDLLADDERBOTTOM

Type: cdlladderbottom • Category: indicators

Description

Ladder Bottom

Parameters

NameTypeDescriptionRequiredDefault
openstringno
highstringno
lowstringno
closestringno
patternstringno"CDLLADDERBOTTOM"

Help

CDLLADDERBOTTOM

Overview

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

Description

The CDLLADDERBOTTOM worker identifies a Ladder Bottom pattern, which is a bullish reversal pattern.

What does this worker do?

This worker analyzes the given financial data and checks for the occurrence of a Ladder Bottom pattern. It takes the open, high, low, and close prices as input and returns an indication of whether the pattern is present.

How to interpret the results

The worker returns a boolean value indicating whether the Ladder Bottom pattern is present in the given data. A true value indicates that the pattern is present, while a false value indicates that it is not.

Parameters

The following parameters are required to use the CDLLADDERBOTTOM worker:

Parameters Schema (JSON)

{
"open": {
"type": "string",
"description": "The open price"
},
"high": {
"type": "string",
"description": "The high price"
},
"low": {
"type": "string",
"description": "The low price"
},
"close": {
"type": "string",
"description": "The close price"
},
"pattern": {
"type": "string",
"default": "CDLLADDERBOTTOM",
"description": "The pattern to identify (default: CDLLADDERBOTTOM)"
}
}

Detailed Parameters

  • open: string - The open price.
  • high: string - The high price.
  • low: string - The low price.
  • close: string - The close price.
  • pattern: string (default: CDLLADDERBOTTOM) - The pattern to identify. Defaults to CDLLADDERBOTTOM.

Usage

To use the CDLLADDERBOTTOM worker, provide the required parameters with their corresponding values. The worker will then analyze the data and return a boolean value indicating the presence of the Ladder Bottom pattern.