cdllongleggeddoji
CDLLONGLEGGEDDOJI
Type:
cdllongleggeddoji
• Category:indicators
Description
Long Legged Doji
Parameters
Name | Type | Description | Required | Default |
---|---|---|---|---|
open | string | no | ||
high | string | no | ||
low | string | no | ||
close | string | no | ||
pattern | string | no | "CDLLONGLEGGEDDOJI" |
Help
CDLLONGLEGGEDDOJI
Overview
The CDLLONGLEGGEDDOJI worker is an indicator used in financial markets to identify a specific candlestick pattern known as the Long Legged Doji.
Description
The Long Legged Doji is a candlestick pattern that indicates a state of indecision in the market. It is characterized by a long upper and lower shadow with a small or non-existent body. This pattern suggests that the market is uncertain about the direction of the trend.
What does this worker do?
This worker takes in the open, high, low, and close prices of a financial instrument and identifies whether the given candlestick pattern matches the Long Legged Doji pattern.
How to interpret the results
The worker returns a boolean value indicating whether the candlestick pattern matches the Long Legged Doji pattern. A true
result suggests that the market is uncertain about the direction of the trend, while a false
result indicates that the pattern does not match.
Parameters
The following parameters are required to use the CDLLONGLEGGEDDOJI worker:
Parameters Schema (JSON)
{
"open": {
"type": "string",
"description": "The opening price of the financial instrument"
},
"high": {
"type": "string",
"description": "The highest price of the financial instrument"
},
"low": {
"type": "string",
"description": "The lowest price of the financial instrument"
},
"close": {
"type": "string",
"description": "The closing price of the financial instrument"
},
"pattern": {
"type": "string",
"default": "CDLLONGLEGGEDDOJI",
"description": "The candlestick pattern to identify (default: CDLLONGLEGGEDDOJI)"
}
}
Parameters List
- open:
string
- The opening price of the financial instrument. - high:
string
- The highest price of the financial instrument. - low:
string
- The lowest price of the financial instrument. - close:
string
- The closing price of the financial instrument. - pattern:
string
(default:CDLLONGLEGGEDDOJI
) - The candlestick pattern to identify.
Example Usage
To use the CDLLONGLEGGEDDOJI worker, simply provide the required parameters:
{
"open": "100.0",
"high": "120.0",
"low": "80.0",
"close": "100.0",
"pattern": "CDLLONGLEGGEDDOJI"
}
The worker will then return a boolean value indicating whether the candlestick pattern matches the Long Legged Doji pattern.