cdlmorningstar
CDLMORNINGSTAR
Type:
cdlmorningstar
• Category:indicators
Description
Morning Star
Parameters
Name | Type | Description | Required | Default |
---|---|---|---|---|
open | string | no | ||
high | string | no | ||
low | string | no | ||
close | string | no | ||
pattern | string | no | "CDLMORNINGSTAR" |
Help
CDLMORNINGSTAR
Description
The CDLMORNINGSTAR indicator is used in financial markets to identify a specific candlestick pattern known as the Morning Star. This pattern is a bullish reversal indicator that appears at the end of a downtrend.
What does this worker do?
This worker identifies the Morning Star pattern based on the provided candlestick data. The Morning Star pattern consists of three candles:
- The first candle is a long bearish candle.
- The second candle is a small bullish or bearish candle with a short body.
- The third candle is a long bullish candle that closes above the midpoint of the first candle.
How to interpret the results
The output of this worker will indicate whether the Morning Star pattern has been identified. A positive result suggests a potential bullish reversal in the market, while a negative result indicates that the pattern was not found.
Parameters
The following parameters are required to use the CDLMORNINGSTAR 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 name of the pattern to identify. | CDLMORNINGSTAR |
Example JSON Schema:
{
"open": {
"type": "string"
},
"high": {
"type": "string"
},
"low": {
"type": "string"
},
"close": {
"type": "string"
},
"pattern": {
"type": "string",
"default": "CDLMORNINGSTAR"
}
}
Usage
To use the CDLMORNINGSTAR worker, provide the required parameters in the specified JSON format. The worker will then analyze the data and return the result indicating whether the Morning Star pattern was identified.