cmo
Calculate the Chande Momentum Oscillator to measure market momentum by comparing current closing prices to previous periods, helping identify overbought or oversold conditions for trading decisions.
Instructions
Fetch chande momentum oscillator
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| interval | Yes | ||
| month | No | ||
| time_period | Yes | ||
| datatype | No |
Input Schema (JSON Schema)
{
"properties": {
"datatype": {
"type": "string"
},
"interval": {
"type": "string"
},
"month": {
"type": "string"
},
"symbol": {
"type": "string"
},
"time_period": {
"type": "number"
}
},
"required": [
"symbol",
"interval",
"time_period"
],
"type": "object"
}