ht_trendmode
Analyze stock market trends using Hilbert Transform trend mode to identify directional movements in financial instruments based on price data.
Instructions
Fetch hilbert transform - trend mode
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"
}