Skip to main content

CDD

cdd

Chart: CDD

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
1cddstringValue of the CDD

Example Request

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

Example Request with Latest

https://charts.bitbo.io/api/v1/cdd/?latest=true

Example Output

{
"data": [
[
"2025-05-07",
"19578842.05"
],
[
"2025-05-08",
"21967701.15"
],
[
"2025-05-09",
"22135653.88"
]
]
}