Rainbow HPR Current Band
rainbow-hpr-band
Chart: Rainbow HPR Current Band
Parameters
| Name | Type | Description | Required |
|---|---|---|---|
start_date | string | Start date in YYYY-MM-DD format | No |
end_date | string | End date in YYYY-MM-DD format | No |
latest | bool | If true, returns the current value | No |
Output
| Index | Name | Type | Description |
|---|---|---|---|
| 0 | date | string | Date in YYYY-MM-DD format |
| 1 | band | string | Current Rainbow HPR Band (e.g., "Green", "Red", etc.) |
Example Request
https://charts.bitbo.io/api/v1/rainbow-hpr-band/?start_date=2025-07-04&end_date=2025-07-04
Example Request with Latest
https://charts.bitbo.io/api/v1/rainbow-hpr-band/?latest=true
Example Output
{
"data": [
[
"2025-07-04",
"Green"
]
]
}