ht_dcphase
Calculate the dominant cycle phase using Hilbert Transform analysis to identify market cycle positions for financial assets, supporting technical analysis of stock price movements.
Instructions
Fetch hilbert transform - dominant cycle phase
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| interval | Yes | ||
| month | No | ||
| datatype | No |
Input Schema (JSON Schema)
{
"properties": {
"datatype": {
"type": "string"
},
"interval": {
"type": "string"
},
"month": {
"type": "string"
},
"symbol": {
"type": "string"
}
},
"required": [
"symbol",
"interval"
],
"type": "object"
}