Skip to main content

Coloured Mayer Multiple

coloured-mayer-multiple

Chart: Coloured Mayer 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
0datestringDate (ISO)
1mayer_multiplestringMayer multiple
2colorstringColor
3current_percentilestringCurrent percentile

Example Request

https://charts.bitbo.io/api/v1/coloured-mayer-multiple/?start_date=2026-04-06&end_date=2026-04-08

Example Request with Latest

https://charts.bitbo.io/api/v1/coloured-mayer-multiple/?latest=true

Code Samples

curl "https://charts.bitbo.io/api/v1/coloured-mayer-multiple/?start_date=2026-04-06&end_date=2026-04-08&api_key=YOUR_API_KEY"

Example Output

{
"data": [
[
"2026-04-06",
"0.77",
"blue",
"25"
],
[
"2026-04-07",
"0.81",
"blue",
"25"
],
[
"2026-04-08",
"0.80",
"blue",
"25"
]
]
}