adosc
Calculate accumulation/distribution oscillator values to identify buying and selling pressure trends for stocks using specified time intervals and period parameters.
Instructions
Fetch accumulation/distribution oscillator
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| interval | Yes | ||
| month | No | ||
| fastperiod | Yes | ||
| slowperiod | Yes | ||
| datatype | No |
Input Schema (JSON Schema)
{
"properties": {
"datatype": {
"type": "string"
},
"fastperiod": {
"type": "number"
},
"interval": {
"type": "string"
},
"month": {
"type": "string"
},
"slowperiod": {
"type": "number"
},
"symbol": {
"type": "string"
}
},
"required": [
"symbol",
"interval",
"fastperiod",
"slowperiod"
],
"type": "object"
}