CDLTASUKIGAP
Type:
cdltasukigap
• Category:indicators
Description
Tasuki Gap
Parameters
Name | Type | Description | Required | Default |
---|---|---|---|---|
open | string | no | ||
high | string | no | ||
low | string | no | ||
close | string | no | ||
pattern | string | no | "CDLTASUKIGAP" |
Help
CDLTASUKIGAP
Overview
The CDLTASUKIGAP indicator is a financial market indicator that identifies the Tasuki Gap pattern.
Description
The Tasuki Gap pattern is a Japanese candlestick pattern that can be used to predict future price movements. It consists of three candles: a long white candle, a gap up to a small body candle, and a third candle that closes within the first candle's body.
What does this worker do?
This worker calculates the CDLTASUKIGAP indicator for a given set of financial data, specifically open, high, low, and close prices.
How to interpret the results
The CDLTASUKIGAP indicator returns a value that indicates whether the Tasuki Gap pattern is present in the data. A value of true
indicates that the pattern is present, while a value of false
indicates that it is not.
Parameters
The following parameters are required to calculate the CDLTASUKIGAP indicator:
Parameters Schema (JSON)
{
"open": {
"type": "string",
"description": "The open price of the financial instrument"
},
"high": {
"type": "string",
"description": "The high price of the financial instrument"
},
"low": {
"type": "string",
"description": "The low price of the financial instrument"
},
"close": {
"type": "string",
"description": "The close price of the financial instrument"
},
"pattern": {
"type": "string",
"default": "CDLTASUKIGAP",
"description": "The pattern to be identified (defaults to CDLTASUKIGAP)"
}
}
Detailed Parameters
- open: string - The open price of the financial instrument.
- high: string - The high price of the financial instrument.
- low: string - The low price of the financial instrument.
- close: string - The close price of the financial instrument.
- pattern: string (default:
CDLTASUKIGAP
) - The pattern to be identified. Defaults toCDLTASUKIGAP
.
Usage
To use this worker, provide the required parameters (open, high, low, close) and optionally specify the pattern to be identified. The worker will return a value indicating whether the Tasuki Gap pattern is present in the data.