Monthly RSI
monthly-rsi
Chart: Monthly RSI
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 | rsi | string | Monthly RSI value |
Important Notes
- Monthly Results: When
latest=false(default), the endpoint returns monthly RSI values for the last day of each month within the specified date range. - Current Value: When
latest=true, the endpoint returns the current monthly RSI value with the current date.
Example Request
https://charts.bitbo.io/api/v1/monthly-rsi/?start_date=2025-02-05&end_date=2025-06-05
Example Request with Latest
https://charts.bitbo.io/api/v1/monthly-rsi/?start_date=2025-02-05&end_date=2025-06-05&latest=true
Example Output (Monthly Results)
{
"data": [
[
"2025-02-28",
"62.59"
],
[
"2025-03-31",
"61.31"
],
[
"2025-04-30",
"66.15"
],
[
"2025-05-31",
"69.84"
]
]
}
Example Output (Latest Value)
{
"data": [
[
"2025-07-04",
"71.25"
]
]
}