CDLUPSIDEGAP2CROWS
Type:
cdlupsidegap2crows
• Category:indicators
Description
Upside Gap Two Crows
Parameters
Name | Type | Description | Required | Default |
---|---|---|---|---|
open | string | no | ||
high | string | no | ||
low | string | no | ||
close | string | no | ||
pattern | string | no | "CDLUPSIDEGAP2CROWS" |
Help
CDLUPSIDEGAP2CROWS
Overview
The CDLUPSIDEGAP2CROWS indicator is used in financial markets to identify a specific candlestick pattern known as the Upside Gap Two Crows. This pattern is considered bearish and can signal a potential reversal in the market.
Description
The Upside Gap Two Crows pattern consists of three candlesticks. The first candlestick is a large white (or green) candle that gaps up from the previous candle. The second and third candlesticks are black (or red) candles with small bodies and long upper shadows, indicating that the market attempted to rally but was pushed back down.
What does this worker do?
This worker calculates the CDLUPSIDEGAP2CROWS indicator based on the provided candlestick data. It analyzes the open, high, low, and close prices of the candlesticks to determine if the Upside Gap Two Crows pattern is present.
How to interpret the results
The worker returns a value indicating whether the CDLUPSIDEGAP2CROWS pattern is present or not. A positive value typically indicates that the pattern is present, suggesting a potential bearish reversal. A value of 0 or null indicates that the pattern is not present.
Parameters
The following parameters are required to calculate the CDLUPSIDEGAP2CROWS indicator:
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": "CDLUPSIDEGAP2CROWS",
"description": "The pattern to be identified (default: CDLUPSIDEGAP2CROWS)"
}
}
Detailed Parameters
- open: string, required - The open price of the candlestick.
- high: string, required - The high price of the candlestick.
- low: string, required - The low price of the candlestick.
- close: string, required - The close price of the candlestick.
- pattern: string, optional (default: CDLUPSIDEGAP2CROWS) - The pattern to be identified. If not provided, it defaults to CDLUPSIDEGAP2CROWS.