Skip to main content

CDLSEPARATINGLINES

Type: cdlseparatinglines • Category: indicators

Description

Separating Lines

Parameters

NameTypeDescriptionRequiredDefault
openstringno
highstringno
lowstringno
closestringno
patternstringno"CDLSEPARATINGLINES"

Help

CDLSEPARATINGLINES

Overview

The CDLSEPARATINGLINES indicator is used in financial markets to identify a specific candlestick pattern known as Separating Lines. This pattern is significant for traders as it can signal potential reversals or continuations in market trends.

Description

The Separating Lines pattern consists of two consecutive candlesticks with a specific relationship between their closing and opening prices. The first candle and the second candle have opposite bullish or bearish indications based on their closing and opening prices.

What does this worker do?

This worker calculates and identifies the Separating Lines candlestick pattern in financial markets based on the provided open, high, low, and close prices.

How to Interpret the Results

The results from this worker will indicate the presence or absence of the Separating Lines pattern at each data point. A positive value typically indicates a bullish Separating Lines pattern, while a negative value indicates a bearish pattern. The exact interpretation may depend on the specific implementation and the context of the analysis.

Parameters

The following parameters are required to use the CDLSEPARATINGLINES worker:

Parameters Schema (JSON)

{
"open": {
"type": "string",
"description": "The open prices of the financial instrument."
},
"high": {
"type": "string",
"description": "The high prices of the financial instrument."
},
"low": {
"type": "string",
"description": "The low prices of the financial instrument."
},
"close": {
"type": "string",
"description": "The close prices of the financial instrument."
},
"pattern": {
"type": "string",
"default": "CDLSEPARATINGLINES",
"description": "The type of candlestick pattern to identify. Defaults to CDLSEPARATINGLINES."
}
}

Detailed Parameters List

  • open: string - The open prices of the financial instrument. This should be a string representing an array or series of open prices.
  • high: string - The high prices of the financial instrument. This should be a string representing an array or series of high prices.
  • low: string - The low prices of the financial instrument. This should be a string representing an array or series of low prices.
  • close: string - The close prices of the financial instrument. This should be a string representing an array or series of close prices.
  • pattern: string (Optional, Default: CDLSEPARATINGLINES) - Specifies the candlestick pattern. For this worker, it defaults to "CDLSEPARATINGLINES".