Skip to main content

CDLKICKING

Type: cdlkicking • Category: indicators

Description

Kicking

Parameters

NameTypeDescriptionRequiredDefault
openstringno
highstringno
lowstringno
closestringno
patternstringno"CDLKICKING"

Help

CDLKICKING

Overview

The CDLKICKING indicator is used in financial markets to identify a specific pattern known as "Kicking". This indicator helps traders and analysts to detect this pattern based on the provided price data.

Description

The CDLKICKING indicator is designed to recognize the "Kicking" pattern, which is a specific candlestick formation used in technical analysis. This pattern is significant because it can signal potential reversals or continuations in market trends.

What does this worker do?

This worker takes in the open, high, low, and close prices of a financial instrument, along with an optional pattern parameter (which defaults to "CDLKICKING"), and calculates the CDLKICKING indicator value. The indicator value will help in identifying whether the given price data matches the "Kicking" pattern.

How to interpret the results

The result of the CDLKICKING indicator will be a value that indicates whether the "Kicking" pattern is present in the given price data. A positive or true result signifies that the pattern has been identified, which could be a signal for a trading decision. The exact interpretation may vary depending on the trading strategy and market context.

Parameters

The following parameters are required or optional for the CDLKICKING indicator:

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": "CDLKICKING",
"description": "The pattern to identify. Defaults to 'CDLKICKING'."
}
}

Detailed 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 (Optional, Default: "CDLKICKING") - The pattern to identify. This parameter defaults to "CDLKICKING" and usually does not need to be changed.