cdlgravestonedoji
CDLGRAVESTONEDOJI
Type:
cdlgravestonedoji
• Category:indicators
Description
Gravestone Doji
Parameters
Name | Type | Description | Required | Default |
---|---|---|---|---|
open | string | no | ||
high | string | no | ||
low | string | no | ||
close | string | no | ||
pattern | string | no | "CDLGRAVESTONEDOJI" |
Help
CDLGRAVESTONEDOJI
Overview
The CDLGRAVESTONEDOJI worker is an indicator used in financial markets to identify a specific candlestick pattern known as the Gravestone Doji.
Description
The Gravestone Doji is a candlestick pattern that appears when the open, low, and close prices are very close to each other, but the high price is significantly higher. This pattern is considered bearish, indicating a potential reversal in the market.
What does this worker do?
This worker analyzes the given open, high, low, and close prices to identify if they match the Gravestone Doji pattern. It returns a result indicating whether the pattern is present or not.
How to interpret the results
The result of this worker will indicate the presence or absence of the Gravestone Doji pattern. A positive result suggests that the pattern is present, which may indicate a potential bearish reversal in the market.
Parameters
The following parameters are required to use the CDLGRAVESTONEDOJI worker:
Parameters Schema (JSON)
{
"open": {
"type": "string",
"description": "The open price of the candlestick."
},
"high": {
"type": "string",
"description": "The high price of the candlestick."
},
"low": {
"type": "string",
"description": "The low price of the candlestick."
},
"close": {
"type": "string",
"description": "The close price of the candlestick."
},
"pattern": {
"type": "string",
"default": "CDLGRAVESTONEDOJI",
"description": "The name of the pattern to identify (default: CDLGRAVESTONEDOJI)."
}
}
Detailed Parameters
- 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: CDLGRAVESTONEDOJI) - The name of the pattern to identify. This parameter is optional and defaults to CDLGRAVESTONEDOJI.