bop
Calculate balance of power indicator for stocks to measure buying and selling pressure using price and volume data for technical analysis.
Instructions
Fetch balance of power
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"
}