CDLMARUBOZU
Type:
cdlmarubozu
• Category:indicators
Description
Marubozu
Parameters
Name | Type | Description | Required | Default |
---|---|---|---|---|
open | string | no | ||
high | string | no | ||
low | string | no | ||
close | string | no | ||
pattern | string | no | "CDLMARUBOZU" |
Help
CDLMARUBOZU
Overview
The CDLMARUBOZU worker is an indicator specifically designed for financial markets. It identifies a Marubozu pattern, which is a type of candlestick pattern.
Description
The CDLMARUBOZU worker detects the Marubozu candlestick pattern. This pattern is characterized by a candle with a very small or non-existent wick on one or both sides, indicating a strong trend in the market.
What does this worker do?
The CDLMARUBOZU worker analyzes candlestick data to identify Marubozu patterns. It takes in open, high, low, and close prices, along with a specified pattern, and returns an indication of whether a Marubozu pattern is present.
How to interpret the results
The worker returns a boolean value indicating the presence or absence of a Marubozu pattern. A true
result signifies that the specified pattern has been identified, while a false
result indicates that it has not.
Parameters
The following parameters are required to use the CDLMARUBOZU worker:
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": "CDLMARUBOZU",
"description": "The type of pattern to identify (defaults to CDLMARUBOZU)."
}
}
Detailed Parameters
- open: The opening price of the candlestick. (
string
) - high: The highest price of the candlestick. (
string
) - low: The lowest price of the candlestick. (
string
) - close: The closing price of the candlestick. (
string
) - pattern: The type of pattern to identify. Defaults to
CDLMARUBOZU
. (string
, default:CDLMARUBOZU
)
By providing these parameters, the CDLMARUBOZU worker can effectively identify Marubozu patterns in financial market data.