cdlhikkake
CDLHIKKAKE
Type:
cdlhikkake
• Category:indicators
Description
Hikkake Pattern
Parameters
Name | Type | Description | Required | Default |
---|---|---|---|---|
open | string | no | ||
high | string | no | ||
low | string | no | ||
close | string | no | ||
pattern | string | no | "CDLHIKKAKE" |
Help
CDLHIKKAKE
Overview
The CDLHIKKAKE worker is an indicator used in financial markets to identify the Hikkake pattern, a type of candlestick pattern.
Description
The Hikkake pattern is a candlestick pattern that can be used to identify potential reversals in the market. It is characterized by a specific sequence of price movements.
What does this worker do?
This worker takes in candlestick data (open, high, low, close) and identifies whether the Hikkake pattern is present. The output can be used to inform trading decisions.
How to interpret the results
The output of this worker will indicate whether the Hikkake pattern is present or not. A positive result indicates that the pattern is present, while a negative result indicates that it is not.
Parameters
The following parameters are required to use the CDLHIKKAKE worker:
Parameter | Type | Description | Default Value |
---|---|---|---|
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 | The type of pattern to identify (default: CDLHIKKAKE) | CDLHIKKAKE |
Example Usage
To use the CDLHIKKAKE worker, you would provide a JSON object with the required parameters, like so:
{
"open": "10.0",
"high": "12.0",
"low": "9.0",
"close": "11.0",
"pattern": "CDLHIKKAKE"
}
Note that the pattern
parameter is optional and defaults to CDLHIKKAKE
if not provided.