Skip to main content

Monthly RSI

monthly-rsi

Chart: Monthly RSI

Parameters

NameTypeDescriptionRequired
start_datestringStart date in YYYY-MM-DD formatNo
end_datestringEnd date in YYYY-MM-DD formatNo
latestboolIf true, returns the current valueNo

Output

IndexNameTypeDescription
0datestringDate in YYYY-MM-DD format
1rsistringMonthly 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"
]
]
}