ht_dcperiod
Calculate the dominant cycle period using Hilbert Transform analysis for stock market technical analysis. Identify cyclical patterns in price movements to support trading decisions.
Instructions
Fetch hilbert transform - dominant cycle period
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| interval | Yes | ||
| month | No | ||
| series_type | No | ||
| datatype | No |
Input Schema (JSON Schema)
{
"properties": {
"datatype": {
"type": "string"
},
"interval": {
"type": "string"
},
"month": {
"type": "string"
},
"series_type": {
"type": "string"
},
"symbol": {
"type": "string"
}
},
"required": [
"symbol",
"interval"
],
"type": "object"
}