cdleveningstar
CDLEVENINGSTAR
Type:
cdleveningstar
• Category:indicators
Description
Evening Star
Parameters
Name | Type | Description | Required | Default |
---|---|---|---|---|
open | string | no | ||
high | string | no | ||
low | string | no | ||
close | string | no | ||
pattern | string | no | "CDLEVENINGSTAR" |
Help
CDLEVENINGSTAR
Overview
The CDLEVENINGSTAR worker is an indicator used in financial markets to identify potential trend reversals.
Description
The CDLEVENINGSTAR worker identifies the Evening Star candlestick pattern, which is a bullish reversal pattern that occurs at the end of a downtrend.
What does this worker do?
The CDLEVENINGSTAR worker analyzes a set of candlestick data, including open, high, low, and close prices, to identify the Evening Star pattern. When the pattern is detected, it returns a value indicating the presence of the pattern.
How to interpret the results
The worker returns a value that indicates whether the Evening Star pattern is present or not. A positive value indicates that the pattern is present, while a negative value or zero indicates that the pattern is not present.
Parameters
The following parameters are required to use the CDLEVENINGSTAR worker:
Parameters Schema (JSON)
{
"open": {
"type": "string",
"description": "Open price"
},
"high": {
"type": "string",
"description": "High price"
},
"low": {
"type": "string",
"description": "Low price"
},
"close": {
"type": "string",
"description": "Close price"
},
"pattern": {
"type": "string",
"default": "CDLEVENINGSTAR",
"description": "The candlestick pattern to identify (default: CDLEVENINGSTAR)"
}
}
Detailed Parameters
- open:
string
- The open price of the candlestick. This is a required parameter. - high:
string
- The high price of the candlestick. This is a required parameter. - low:
string
- The low price of the candlestick. This is a required parameter. - close:
string
- The close price of the candlestick. This is a required parameter. - pattern:
string
- The candlestick pattern to identify. Default value isCDLEVENINGSTAR
. This parameter is optional.
Example Usage
To use the CDLEVENINGSTAR worker, provide the required parameters in the following format:
{
"open": "10.0",
"high": "12.0",
"low": "9.0",
"close": "11.0",
"pattern": "CDLEVENINGSTAR"
}