Skip to main content

Cycle Low Multiple

cycle-low-multiple

Chart: Cycle Low Multiple

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
0era_numberstringEra number
1days_relative_to_halvingstringDays relative to halving
2price_multiple_from_cycle_lowstringPrice multiple from cycle low
3closing_pricestringClosing price
4datestringDate (ISO)

Example Request

https://charts.bitbo.io/api/v1/cycle-low-multiple/?start_date=2025-05-07&end_date=2025-05-09

Example Request with Latest

https://charts.bitbo.io/api/v1/cycle-low-multiple/?latest=true

Code Samples

curl "https://charts.bitbo.io/api/v1/cycle-low-multiple/?start_date=2025-05-07&end_date=2025-05-09&api_key=YOUR_API_KEY"

Example Output

{
"data": [
[
"12.34",
"12.34",
"12.34",
"12.34",
"2025-05-07"
],
[
"23.45",
"23.45",
"23.45",
"23.45",
"2025-05-08"
],
[
"34.56",
"34.56",
"34.56",
"34.56",
"2025-05-09"
]
]
}