CDLSTALLEDPATTERN
Type:
cdlstalledpattern
• Category:indicators
Description
Stalled Pattern
Parameters
Name | Type | Description | Required | Default |
---|---|---|---|---|
open | string | no | ||
high | string | no | ||
low | string | no | ||
close | string | no | ||
pattern | string | no | "CDLSTALLEDPATTERN" |
Help
CDLSTALLEDPATTERN
Description
The CDLSTALLEDPATTERN indicator is used in financial markets to identify a Stalled Pattern, which is a type of candlestick pattern.
Overview
This worker calculates the Stalled Pattern indicator, which is used to analyze the behavior of financial markets. The Stalled Pattern is a candlestick pattern that indicates a potential pause or stall in the market trend.
What does this worker do?
This worker takes in candlestick data (open, high, low, close) and returns a value indicating the presence of a Stalled Pattern.
How to interpret the results
The output of this worker is a value that indicates the presence or absence of a Stalled Pattern. A positive value indicates that the pattern is present, while a negative or zero value indicates that the pattern is not present.
Parameters
The following parameters are required to calculate the CDLSTALLEDPATTERN indicator:
Parameters Schema (JSON)
{
"open": {
"type": "string",
"description": "The opening price of the candlestick"
},
"high": {
"type": "string",
"description": "The highest price of the candlestick"
},
"low": {
"type": "string",
"description": "The lowest price of the candlestick"
},
"close": {
"type": "string",
"description": "The closing price of the candlestick"
},
"pattern": {
"type": "string",
"default": "CDLSTALLEDPATTERN",
"description": "The type of pattern to calculate (default: CDLSTALLEDPATTERN)"
}
}
Detailed Parameters
- open: string - The opening price of the candlestick.
- high: string - The highest price of the candlestick.
- low: string - The lowest price of the candlestick.
- close: string - The closing price of the candlestick.
- pattern: string (default:
CDLSTALLEDPATTERN
) - The type of pattern to calculate. This parameter is optional and defaults toCDLSTALLEDPATTERN
.