Skip to main content

cdltristar


CDLTRISTAR

Type: cdltristar • Category: indicators

Description

Tristar Pattern

Parameters

NameTypeDescriptionRequiredDefault
openstringno
highstringno
lowstringno
closestringno
patternstringno"CDLTRISTAR"

Help

CDLTRISTAR

Description

The CDLTRISTAR worker is an indicator used in financial markets to identify the Tristar pattern.

Overview

The CDLTRISTAR worker is designed to detect the Tristar pattern, a specific candlestick formation used in technical analysis. This pattern is characterized by three consecutive doji candlesticks, indicating a potential reversal in the market.

What does this worker do?

The CDLTRISTAR worker takes in candlestick data and analyzes it to identify the Tristar pattern. When the pattern is detected, it returns a signal indicating a potential reversal in the market.

How to interpret the results

The output of the CDLTRISTAR worker is a signal that indicates the presence or absence of the Tristar pattern. A positive signal indicates that the pattern has been detected, while a negative signal indicates that the pattern is not present.

Parameters

JSON Schema

The CDLTRISTAR worker accepts the following parameters:

{
"open": {
"type": "string"
},
"high": {
"type": "string"
},
"low": {
"type": "string"
},
"close": {
"type": "string"
},
"pattern": {
"type": "string",
"default": "CDLTRISTAR"
}
}

Parameter 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: CDLTRISTAR) - The pattern to detect (in this case, always CDLTRISTAR).

Usage

To use the CDLTRISTAR worker, simply pass in the required candlestick data and pattern parameter. The worker will return a signal indicating the presence or absence of the Tristar pattern.